-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
51 lines (42 loc) · 1.14 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
source 'https://rubygems.org'
gem 'rails', '~> 5.0.2'
gem 'sprockets-rails', github: 'rails/sprockets-rails'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.0'
gem 'active_model_serializers', '~> 0.10.0'
gem 'stripe', require: 'stripe'
gem 'paypal-sdk-rest'
gem 'bugsnag'
gem 'countries'
gem 'fog-aws'
gem 'carrierwave', github: 'carrierwaveuploader/carrierwave'
gem 'rmagick', '~> 2.13.1'
gem 'omniauth'
gem 'mailgun_rails'
gem 'devise'
gem 'devise_token_auth'
gem 'activeadmin', github: 'activeadmin'
gem 'inherited_resources', github: 'activeadmin/inherited_resources'
# Overwrites
gem 'json', github: 'flori/json', branch: 'v1.8'
group :development, :test do
gem 'byebug', platform: :mri
gem 'dotenv-rails'
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'rails-controller-testing'
gem 'shoulda-matchers'
gem 'faker'
gem 'stripe-ruby-mock', '~> 2.3.1', require: 'stripe_mock'
end
group :development do
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :production do
gem 'rails_12factor'
gem 'lograge'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]