-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGemfile
More file actions
86 lines (63 loc) · 2.12 KB
/
Gemfile
File metadata and controls
86 lines (63 loc) · 2.12 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.2'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1'
# Use postgresql as the database for Active Record
gem 'pg', '>= 0.18', '< 2.0'
gem 'graphql', '~> 1.12.17'
gem 'graphql-batch'
gem 'graphql-guard'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 6.0.0.rc.5'
gem 'react-rails'
gem 'devise', '~> 4.9.3'
gem 'omniauth-bottlenose', git: 'https://github.com/CodeGrade/omniauth-bottlenose'
gem 'omniauth-oauth2', '~> 1.8.0'
gem 'omniauth-rails_csrf_protection'
gem 'bootstrap_form', '>= 4.2.0'
gem 'headless' # needed to run Racket, and xvfb-run (the shell script) merges stdout and stderr
gem 'rubyzip'
gem 'pretender'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 2.7'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false
gem 'activerecord_json_validator', '~> 2.0'
gem 'json-schema', '~> 4.1.1'
gem 'listen', '~> 3.3'
group :development, :test do
gem 'byebug'
gem 'factory_bot_rails', require: false
gem 'minitest-reporters'
gem 'pry'
gem 'pry-rails'
gem 'pry-rescue'
gem 'pry-stack_explorer'
gem 'puma', '~> 6.4'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'rubocop-rails'
gem 'spring', '4.0.0'
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 4.1.0'
gem 'activerecord-explain-analyze'
end
group :test do
gem 'capybara'
gem 'database_cleaner'
gem 'selenium-webdriver'
gem 'webdrivers'
end
group :production do
gem 'passenger', '>= 5.3.2', require: 'phusion_passenger/rack_handler'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]