-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
41 lines (37 loc) · 970 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.4'
gem 'rails', '~> 5.2.8', '>= 5.2.8.1'
gem 'pg', '>= 0.18', '< 2.0'
# Use Puma as the app server
gem 'puma', '~> 3.11'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 2.5'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
gem 'faraday'
gem 'figaro'
gem 'graphql'
gem 'sprockets'
gem 'bootsnap', '>= 1.1.0', require: false
group :development, :test do
gem 'pry'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'graphiql-rails'
end
group :test do
gem 'capybara'
gem 'launchy'
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'simplecov'
gem 'webmock'
gem 'vcr'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]