-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
41 lines (29 loc) · 821 Bytes
/
Copy pathGemfile
File metadata and controls
41 lines (29 loc) · 821 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
source 'https://rubygems.org'
gem 'rails', '4.1.6'
gem 'rails-api'
gem 'spring', :group => :development
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
gem 'colorize', platforms: [:mingw, :mswin, :x64_mingw]
gem 'win32console', platforms: [:mingw, :mswin, :x64_mingw]
group :development, :test do
gem 'sqlite3'
gem 'pry-debugger'
gem 'awesome_print'
gem 'rspec-rails'
gem 'mocha'
gem 'factory_girl_rails', '~> 4.0'
end
group :production do
gem 'pg'
gem 'rails_12factor'
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'