-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
64 lines (50 loc) · 1.27 KB
/
Gemfile
File metadata and controls
64 lines (50 loc) · 1.27 KB
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'
ruby "2.3.3"
gem 'rails', '4.2.5'
gem 'pg'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'therubyracer', platforms: :ruby
gem 'devise'
gem 'royce'
gem 'cancancan', '~> 1.10'
gem 'dotenv'
gem 'dotenv-rails', require: 'dotenv/rails-now'
gem 'jquery-rails'
# gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'haml-rails'
gem 'aasm'
gem 'less-rails'
gem 'simple_form'
gem 'kaminari'
gem 'bootstrap-kaminari-views'
gem 'twitter-bootstrap-rails', '3.2.0'
gem 'public_activity'
gem 'rails_12factor', group: :production
gem 'prawn-rails'
gem 'momentjs-rails', '>= 2.9.0'
gem 'datetimepicker-rails', github: 'zpaulovics/datetimepicker-rails', branch: 'master', submodules: true
gem 'cocoon'
gem 'react-rails', '~> 1.0'
gem 'puma'
group :development, :test do
gem 'byebug'
gem 'better_errors'
gem 'quiet_assets'
gem 'binding_of_caller'
gem 'pry-rails'
gem 'brakeman'
# gem 'web-console', '~> 2.0'
gem 'spring'
gem 'bullet'
end
group :development do
gem 'capistrano', require: false
gem 'capistrano-rvm', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano3-puma', require: false
end