forked from jessicarobins/jd-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
43 lines (29 loc) · 798 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
source 'https://rubygems.org'
gem 'rails', '4.2.6'
gem 'rails-api'
gem 'spring', :group => :development
gem 'puma'
gem 'pg'
gem 'rails_12factor', group: :production
#authentication
gem 'devise_token_auth'
gem "omniauth-google-oauth2"
gem 'omniauth'
gem 'rack-cors', :require => 'rack/cors'
#roles
gem "rolify"
gem 'acts_as_paranoid', '~> 0.5.0.rc1'
gem 'active_record_union'
gem 'ancestry', :github => "stefankroes/ancestry", :branch => "2-1-stable"
gem 'acts_as_list'
# To use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# 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'
gem 'byebug'