-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
43 lines (24 loc) · 794 Bytes
/
Gemfile
File metadata and controls
43 lines (24 loc) · 794 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
42
43
source 'https://rubygems.org'
ruby '2.2.2'
gem 'rails'
gem 'thin'
gem 'rails-api'
gem 'rails_12factor'
gem 'rack-cors', :require => 'rack/cors'
gem 'spring', :group => :development
gem 'omniauth'
gem 'devise'
# Token based authentication for Rails JSON APIs
# Using 0.1.32.beta9 for now until we find a way to fix "no method" bug with using guest account.
gem 'devise_token_auth' , '= 0.1.32.beta9'
gem 'pg'
gem 'figaro'
gem 'bcrypt'
# The pearl engine, including our plugins
gem 'pearl_engine', :git => 'git://github.com/openpearl/PearlEngine.git', :branch => 'master'
# # Local version of Pearl Engine for testing and development
# gem 'pearl_engine', path: "/Users/admin/Desktop/PearlEngine"
group :test, :development do
gem 'rspec-rails'
gem 'factory_girl_rails'
end