-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGemfile
160 lines (134 loc) · 3.69 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby file: ".ruby-version"
gem "aasm", "~> 5.5.0"
gem "active_model_serializers", "~> 0.10.15"
gem "csv"
gem "discard", "~> 1.4"
gem "faraday"
gem "google-apis-sheets_v4"
gem "govuk_notify_rails", "~> 3.0.0"
gem "net-imap"
gem "net-pop"
gem "net-smtp"
gem "oauth"
gem "ostruct"
gem "pg"
gem "pg_dump_anonymize"
gem "puma"
gem "rack-attack"
gem "rails"
gem "rexml"
gem "sentry-rails", ">= 4.8.0"
gem "sentry-ruby"
gem "sentry-sidekiq"
gem "simple_command"
gem "tzinfo-data"
gem "webdack-uuid_migration", "~> 1.5.0"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.1.0", require: false
# Authentication
gem "devise" # User authentication
gem "devise_saml_authenticatable", ">= 1.7.0"
gem "omniauth", ">= 2.0.0"
gem "omniauth-google-oauth2", ">= 0.8.1"
gem "omniauth-oauth2", ">= 1.7.1" # Provide Oauth2 strategy framework
gem "omniauth-rails_csrf_protection", "~> 1.0"
# Improve backtrace in nested error recues
gem "nesty"
# Authorization
gem "pundit"
# Pagination
gem "pagy"
# Seeding tools
gem "dibber"
# Gathers data from user browser - OS and Browser name
gem "browser"
# Used to mock saml request in UAT
gem "ruby-saml-idp", github: "dev-develop/ruby-saml-idp", branch: "master"
# Used to encode sample (mock) TrueLayer transaction IDs as JSON
gem "jwt"
# background processing
gem "redis"
gem "sidekiq", "~> 7.3.7"
gem "sidekiq-status", "~> 3.0.3"
# URL and path parsing
gem "addressable"
# File storage
gem "aws-sdk-s3"
# convert documents to PDF
gem "libreconv"
# Used for working day calculations
gem "business"
# Monitoring
gem "prometheus_exporter"
gem "webrick"
# Generating Fake applications for tests and admin user
gem "factory_bot_rails", ">= 6.2.0"
gem "faker", ">=1.9.1"
# Rails 7 asset management
gem "cssbundling-rails"
gem "jsbundling-rails"
gem "propshaft"
# generating PDFs
gem "grover"
# DFE formbuilder
gem "govuk_design_system_formbuilder"
# ViewComponent
gem "govuk-components"
gem "view_component"
# Catching unsafe migrations in development
gem "strong_migrations"
group :development, :test do
gem "awesome_print", "~> 1.9.2"
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "dotenv"
gem "erb_lint", "0.8.0", require: false
gem "hirb"
gem "htmlentities"
gem "i18n-tasks"
gem "json_expressions"
gem "nokogiri", ">= 1.12.5"
gem "overcommit"
gem "pry-byebug"
gem "rspec_junit_formatter"
gem "rubocop-govuk", require: false
gem "rubocop-performance"
# Available in dev env for generators
gem "rspec-rails", "~> 7.1"
end
group :development do
gem "aasm-diagram", require: false
gem "guard-cucumber"
gem "guard-livereload"
gem "guard-rspec"
gem "guard-rubocop"
gem "listen", ">= 3.0.5", "< 3.10"
gem "pry-rescue"
gem "pry-stack_explorer"
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem "spring"
end
group :test do
gem "action_dispatch-testing-integration-capybara",
github: "thoughtbot/action_dispatch-testing-integration-capybara", tag: "v0.1.1",
require: "action_dispatch/testing/integration/capybara/rspec"
gem "axe-core-cucumber"
gem "capybara", ">= 3.36.0", "< 4.0"
gem "cucumber", ">= 9.2.1", require: false
gem "cucumber-rails", ">= 2.4.0", require: false
gem "database_cleaner"
gem "launchy"
gem "puffing-billy", ">= 4.0.0", require: false
gem "rack-pjax"
gem "rails-controller-testing"
gem "rspec-sidekiq"
gem "selenium-webdriver"
gem "shoulda-matchers", "~> 6.4"
gem "simplecov", require: false
gem "simplecov-rcov"
gem "super_diff"
gem "table_print", require: false
gem "vcr"
gem "webmock"
end