-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
55 lines (46 loc) · 1.1 KB
/
Gemfile
File metadata and controls
55 lines (46 loc) · 1.1 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
source 'http://rubygems.org'
gem 'rails', '4.2.4'
gem 'sass-rails', '5.0.2'
gem 'uglifier', '2.5.3'
gem 'coffee-rails', '4.1.0'
gem 'jquery-rails', '4.0.3'
gem 'turbolinks', '2.3.0'
gem 'jbuilder', '2.2.3'
gem 'sdoc', '0.4.0', group: :doc
gem 'bootstrap-sass', '3.2.0.0'
gem 'bcrypt', '3.1.7'
gem 'will_paginate', '3.0.7'
gem 'bootstrap-will_paginate', '0.0.10'
gem 'faker'
gem 'tinymce-rails'
gem 'bootstrap_form'
gem 'time_difference'
gem 'bootstrap-datepicker-rails'
gem 'cloudinary'
gem 'carrierwave', '~> 0.9'
gem 'mysql2', '~> 0.3.18'
gem 'arel', '~> 6.0.0'
gem 'sidekiq'
gem 'doorkeeper'
gem "administrate"
gem "gritter", "1.2.0"
gem "recaptcha", :require => "recaptcha/rails"
gem 'pg'
gem 'rack-cors', :require => 'rack/cors'
gem 'active_hash_relation'
# gem "unicorn"
gem "thin"
gem "puma"
gem "passenger"
#api related gems
gem 'pundit', '~> 0.3.0'
gem 'active_model_serializers', '0.9.2'
gem 'kaminari', '~> 0.16.1'
group :development, :test do
gem 'byebug', '3.4.0'
gem 'web-console', '2.0.0.beta3'
gem 'spring', '1.1.3'
end
group :production do
gem 'rails_12factor', '0.0.2'
end