-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
32 lines (29 loc) · 821 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
source 'https://rubygems.org'
gem 'rails', '4.2.1'
gem 'rails-api', github: 'rails-api/rails-api'
gem 'figaro'
gem 'bcrypt', '~> 3.1.7'
gem 'mongoid', '~> 4.0.2'
gem 'mongoid-observers'
gem 'moped'
gem 'rack-cors', '~> 0.4.0', require: 'rack/cors'
gem 'httparty'
gem 'jsonapi-resources', github: 'cerebris/jsonapi-resources', branch: 'whitelist_controller_exceptions'
gem 'jwt'
group :development, :test do
gem 'web-console', '~> 2.0'
gem 'spring'
gem 'rspec-rails', '~> 3.0'
gem 'guard-rspec', require: false
gem 'guard-bundler', require: false
gem 'guard-rubocop'
gem 'pry', github: 'pry/pry'
gem 'rubocop', require: false
gem 'faker', require: false
gem 'database_cleaner', '~> 1.5.1'
end
group :test do
gem 'webmock', require: 'webmock/rspec'
gem 'factory_girl_rails'
gem 'json_spec'
end