forked from MatthieuSegret/graphql-rails-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
39 lines (33 loc) · 819 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
source 'https://rubygems.org'
ruby '2.4.1'
gem 'rails', '5.1.4'
gem 'puma', '~> 3.0'
gem 'uglifier'
gem 'bcrypt'
gem 'faker'
gem 'graphql'
gem 'graphql-batch'
gem 'graphiql-rails'
gem 'graphql-formatter'
gem 'rack-cors'
gem 'newrelic_rpm'
group :production do
gem 'pg'
gem 'optics-agent'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
gem 'sqlite3'
end
group :development do
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'awesome_print'
gem 'rubocop', require: false
# for graphql browser
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
end