This repository has been archived by the owner on Jan 25, 2023. It is now read-only.
forked from NCCE/curriculum.teachcomputing.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
74 lines (67 loc) · 1.94 KB
/
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
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.2'
gem 'activestorage-validator'
gem 'administrate', '~> 0.17.0'
gem 'administrate-field-active_storage', '~> 0.3.4'
gem 'administrate-field-nested_has_many', '~> 1.3.0'
gem 'aws-sdk-s3', '~> 1.85', require: false
gem 'barnes', '~> 0.0.8'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'cloudflare-rails', '~> 1.1'
gem 'faraday', '~> 1.0', '>= 1.0.1'
gem 'graphiql-rails', '1.7.0'
gem 'graphql', '<= 1.10.10'
gem 'lograge', '~> 0.11.2'
gem 'mimemagic', '~> 0.3.7'
gem 'net-imap'
gem 'net-pop'
gem 'net-smtp'
gem 'pg', '~> 1.1'
gem 'puma', '~> 4.3'
gem 'rack-attack', '~> 5.4.2'
gem 'rails', '~> 6.1.4.1'
gem 'sass-rails', '>= 6'
gem 'sentry-rails'
gem 'sentry-ruby'
gem 'sidekiq', '~> 6.4'
gem 'webpacker', '~> 5.4.3'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
group :development, :test do
gem 'brakeman'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'climate_control'
gem 'debase', '>=0.2.5.beta2'
gem 'dotenv-rails'
gem 'erb_lint', require: false
gem 'factory_bot_rails', '~> 5.2.0'
gem 'guard-rspec', '~> 4.7.3', require: false
gem 'pry-byebug'
gem 'reek'
gem 'rspec-mocks'
gem 'rspec-rails', '~> 4.0.0'
gem 'rubocop'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'ruby-debug-ide', '~> 0.7.3'
gem 'simplecov'
gem 'solargraph', '~> 0.39'
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'listen', '~> 3.2'
gem 'spring'
gem 'spring-commands-rspec'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15'
gem 'rspec-graphql_matchers'
gem 'selenium-webdriver'
gem 'shoulda-matchers', '~> 3.1'
# Easy installation and use of web drivers to run system tests with browsers
gem 'webdrivers'
end