-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
35 lines (24 loc) · 852 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
source 'https://rubygems.org'
gem 'rails'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'rails-api', :git => 'git://github.com/LiminalSoftware/rails-api.git', :tag => "0.0.2.5"
#gem 'rails-api'
#gem 'sqlite3'
gem 'pg'
gem 'pry'
gem 'awesome_print'
gem "rspec-rails", ">= 2.11.4", :group => [:development, :test]
gem "meta_request", group: :development
gem "database_cleaner", ">= 0.9.1", :group => :test
gem "capybara"
gem "factory_girl_rails", ">= 4.1.0", :group => [:development, :test]# 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'