forked from DFE-Digital/early-careers-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
179 lines (129 loc) · 3.99 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby File.read(Pathname.new(__dir__).join(".ruby-version")).strip
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 6.1.7"
# User management and rbac
gem "devise", ">= 4.8.0"
gem "paper_trail"
gem "pretender", ">= 0.4.0"
gem "pundit"
# Error and performance monitoring
gem "sentry-rails", "~> 5.5"
gem "sentry-ruby", "~> 5.7"
gem "sentry-sidekiq"
gem "secure_headers"
# Cleaner logs, one line per request
gem "lograge", "~> 0.12.0"
gem "logstash-event"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.4"
# Use UUIDs as db primary key by default
gem "ar-uuid", "~> 0.2.3"
# Use Puma as the app server
gem "puma", "~> 5.6"
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem "shakapacker", "~> 6.5.4"
# Soft delete
gem "discard", "~> 1.2", ">= 1.2.0"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", "~> 1.15", require: false
# Manage multiple processes i.e. web server and webpack
gem "foreman"
# Canonical meta tag
gem "canonical-rails", "~> 0.2.14"
gem "listen", "~> 3.7"
gem "rack-attack", "~> 6.6"
# GOV.UK Notify
gem "mail-notify", "~> 1.1"
# do not rely on host's timezone data, which can be inconsistent
gem "tzinfo-data"
gem "govuk-components", "~> 3.3"
gem "govuk_design_system_formbuilder", "~> 3.3"
gem "view_component", require: "view_component/engine"
# Fetching from APIs
gem "httpclient", "~> 2.8", ">= 2.8.3"
gem "rubyzip", "~> 2.3", ">= 2.3.0"
gem "savon", "~> 2.13"
# Strong migration checker for database migrations
gem "strong_migrations", "~> 1.4"
# Pagination
gem "pagy", "~> 5.10", ">= 5.10.1"
# Json Schema for api validation
gem "json-schema", ">= 2.8.1"
gem "jsonapi-serializer"
# OpenApi Swagger
gem "openapi3_parser", "~> 0.9.2"
gem "ransack"
gem "friendly_id", "~> 5.5"
platform :mswin, :mingw, :x64_mingw do
gem "wdm", "~> 0.1"
end
# S3 adapter for active storage
gem "aws-sdk-s3", require: false
gem "activerecord-session_store", "~> 2.0"
gem "google-apis-drive_v3"
gem "googleauth"
gem "google-cloud-bigquery"
gem "sidekiq"
gem "sidekiq-cron"
gem "net-imap", require: false
gem "net-pop", require: false
gem "net-smtp", require: false
gem "json-diff", "~> 0.4.1", require: false
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: %i[mri mingw x64_mingw]
# GOV.UK interpretation of rubocop for linting Ruby
gem "rubocop-govuk", ">= 4.8"
gem "scss_lint-govuk"
# Debugging
gem "pry-byebug"
# Testing framework
gem "rspec-rails", "~> 5.1"
gem "cypress-on-rails", "~> 1.13"
gem "database_cleaner-active_record"
gem "dotenv-rails", "~> 2.8.1"
# Swagger generator
gem "multi_json"
gem "open_api-rswag-specs", "~> 0.1.0"
gem "parallel_tests"
end
group :development, :deployed_development, :test, :sandbox do
gem "factory_bot_rails", "~> 6.2.0"
gem "faker"
gem "timecop"
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "web-console", "~> 4.2.0"
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem "spring"
gem "spring-watcher-listen", "~> 2.1"
# autocompletion backend for development
gem "solargraph"
# Profiling
gem "memory_profiler"
gem "rack-mini-profiler"
gem "stackprof"
gem "nokogiri"
end
group :test do
gem "axe-core-rspec"
gem "capybara", "~> 3.38"
gem "jsonapi-rspec"
gem "launchy"
gem "pundit-matchers", "~> 1.8.4"
gem "rails-controller-testing", "~> 1.0.5"
gem "rspec-default_http_header", "~> 0.0.6"
gem "selenium-webdriver"
gem "shoulda-matchers", "~> 5.2"
gem "simplecov"
gem "site_prism", "~> 3.7"
gem "webdrivers", "~> 5.2"
gem "webmock", "~> 3.18"
gem "with_model"
end
gem "countries", "~> 5.2"
gem "scenic", "~> 1.6"