-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
38 lines (26 loc) · 728 Bytes
/
Gemfile
File metadata and controls
38 lines (26 loc) · 728 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
source 'https://rubygems.org'
gem 'rails', '3.2.13'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'rails-api', '~> 0.1.0'
gem 'pg', '~> 0.15.1'
group :test do
gem 'factory_girl_rails', '~> 4.2.1'
gem 'shoulda-matchers', '~> 2.1.0'
end
group :test, :development do
gem 'rspec-rails', '~> 2.13.2'
end
group :development do
gem 'guard-rspec', '~> 3.0.0'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# 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'