-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
39 lines (30 loc) · 989 Bytes
/
Gemfile
File metadata and controls
39 lines (30 loc) · 989 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
source 'https://rubygems.org'
ruby '2.3.0'
gem 'rails', '>= 5.0.0.beta1.1', '< 5.1'
gem 'warden'
gem 'active_model_serializers', github: 'rails-api/active_model_serializers'
gem 'pundit'
gem 'apipie-rails'
# Primegap Gems
gem 'primegap-core', path: '../primegap-core' # github: 'primegap/primegap-core', branch: 'master'
group :production do
gem 'puma'
gem 'pg'
gem 'rails_12factor' # heroku support
gem 'newrelic_rpm'
end
group :development do
gem 'spring'
end
group :test do
gem 'sqlite3'
gem 'shoulda-matchers', require: false
gem 'codeclimate-test-reporter', require: nil
end
group :development, :test do
gem 'rspec-expectations', github: 'rspec/rspec-expectations', branch: 'master'
gem 'rspec-mocks', github: 'rspec/rspec-mocks', branch: 'master'
gem 'rspec-support', github: 'rspec/rspec-support', branch: 'master'
gem 'rspec-core', github: 'rspec/rspec-core', branch: 'master'
gem 'rspec-rails', github: 'rspec/rspec-rails', branch: 'master'
end