-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
61 lines (56 loc) · 1.43 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
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
source 'https://rubygems.org'
ruby '2.4.10'
gem 'dotenv-rails', :require => 'dotenv/rails-now'
gem 'rails', '4.2.10'
gem 'rabl', '~> 0.11.0'
gem 'oj'
gem 'jbuilder', '~> 2.0'
gem 'unicorn'
gem 'unicorn-rails'
gem 'uglifier', '>= 1.3.0'
gem 'devise', '~> 3.5.0'
gem 'rails_admin', '~> 0.6.7'
gem 'active_model_serializers', '~> 0.9.3'
gem 'pundit'
gem 'net-ssh'
gem 'aws-ses', '~> 0.6.0', :require => 'aws/ses'
gem 'sentry-raven'
gem 'date_validator'
gem 'rails_config'
gem 'config'
gem 'carrierwave'
gem 'fog', '~> 1.31.0'
gem 'recursive-open-struct', '~> 0.6.3'
gem 'discourse_api', '0.38.0'
gem 'ckeditor'
gem 'mini_magick'
gem 'pg', '~> 0.21'
gem 'rails_12factor'
gem 'xmlrpc'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
# Spring speeds up development by keeping your application running in the
# background. Read more: https://github.com/rails/spring
gem 'spring'
end
group :test do
gem 'faker', '~> 1.4.1'
gem 'database_cleaner', '~> 1.4.0'
gem 'vcr', require: false
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'factory_bot_rails'
gem 'guard-rspec', require: false
gem 'pry-rails'
gem 'rspec'
gem 'rspec-rails'
gem 'simplecov', require: false
end