-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
47 lines (39 loc) · 1021 Bytes
/
Gemfile
File metadata and controls
47 lines (39 loc) · 1021 Bytes
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
source 'https://rubygems.org'
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.5'
gem 'figaro'
gem 'unicorn'
gem 'responders'
gem 'active_model_serializers', '~> 0.10.0'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test do
gem 'byebug', platform: :mri
gem 'pry-rails'
gem 'rspec-rails'
gem 'capybara'
gem 'launchy'
gem 'shoulda-matchers'
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'faker'
gem 'simplecov', require: false
end
group :development do
gem 'web-console'
gem 'listen', '~> 3.0.5'
end
group :production do
gem 'rails_12factor', group: :production
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]