generated from ministryofjustice/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
52 lines (47 loc) · 1.39 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby File.read(".ruby-version").strip
gem "rails", "~> 7.0.8"
gem "mysql2", "~> 0.5.5"
gem "puma", "~> 6.5.0"
gem "sassc-rails"
gem "sprockets", "~> 4.2.1"
gem "jbuilder", "~> 2.11"
gem "bootsnap", ">= 1.4.2", require: false
gem "tzinfo-data"
gem "devise"
gem "jwt"
gem "omniauth-oauth2"
gem "omniauth-rails_csrf_protection", "~> 1.0.1"
gem "aws-sdk-s3", "~> 1.176"
gem "ipaddress_2"
gem "aws-sdk-ecs", "~> 1.173"
gem "cancancan", "~> 3.5"
gem "audited"
gem "kaminari"
gem "faker"
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "dotenv-rails"
gem "rspec-rails", "~> 6.0.3"
gem "factory_bot_rails"
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "web-console", ">= 3.3.0"
gem "listen", "~> 3.8"
gem "standardrb"
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem "capybara", ">= 2.15"
gem "selenium-webdriver"
gem "simplecov", require: false
gem "simplecov-console", require: false
# Easy installation and use of web drivers to run system tests with browsers
gem "webdrivers"
gem "webmock"
gem "rails-controller-testing"
gem "shoulda-matchers", "~> 6.4"
end