-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathGemfile
43 lines (35 loc) · 929 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'
ruby '2.3.1'
gem 'rails', '~> 5.0.0'
gem 'pg'
gem 'puma', '~> 3.0'
gem 'rack-cors'
gem 'ffaker'
gem 'graphql'
gem 'graphiql-rails'
group :test do
gem 'database_cleaner', '~> 1.5.3'
end
group :development, :test do
gem 'byebug', platform: :mri
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'shoulda-matchers', '~> 3.1'
gem 'rails-controller-testing'
gem 'pundit-matchers'
end
group :development do
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'rubocop', '~> 0.42.0', require: false
gem 'rubycritic', :require => false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Authentication and authorization
gem 'devise'
gem 'pundit'
gem 'active_model_serializers'
gem 'has_secure_token'
gem 'dotenv-rails', :groups => [:development, :test]