-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
49 lines (34 loc) · 816 Bytes
/
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
source 'https://rubygems.org'
ruby '2.1.3'
gem 'rails', '4.2.0.beta4'
gem 'rails-api'
gem 'arel', '6.0.0.beta2'
gem 'aws-sdk-core'
gem 'rack-cors', :require => 'rack/cors'
gem 'rack-rewrite'
gem 'newrelic_rpm'
gem "mail", "2.6.3"
gem 'pg'
gem 'rails_12factor', group: :production
group :development do
gem 'bullet'
gem 'spring'
end
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.1.2'
# To use Jbuilder templates for JSON
gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano', :group => :development
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :development, :test do
gem 'rspec-rails', '~> 3.0.0'
gem 'factory_girl_rails'
gem 'faker'
gem 'pry-rails'
gem 'pry-byebug'
gem 'dotenv-rails'
end