-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
64 lines (52 loc) · 1.37 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
source 'https://rubygems.org'
gem 'rails', '~> 5.0', '>= 5.0.0.1'
gem 'mysql2', '>= 0.3.18', '< 0.5'
gem 'puma', '~> 3.0'
# views
gem 'simple_form'
gem 'responders', '~> 2.0'
# styles
gem 'bh', github: "buren/bh", branch: "disable-form-builder" # https://github.com/Fullscreen/bh/pull/150
gem 'bootstrap-sass'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
# js
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# api
gem 'jbuilder', '~> 2.5'
# auth
gem 'devise', '~> 4.2'
gem 'devise_invitable'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-instagram'
gem 'omniauth-twitter'
gem 'instagram'
gem 'twitter'
# utility
gem "workflow"
gem "cancancan", "~> 1.10"
gem "composite_primary_keys", "~> 9.0"
gem "dotenv-rails"
gem "geocoder"
group :test do
gem 'webmock'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
gem 'listen', '~> 3.0.5'
# Use Capistrano for deployment
gem 'capistrano-rails'
gem 'capistrano-passenger'
end
group :production do
gem "passenger", ">= 5.0.25", require: "phusion_passenger/rack_handler"
end