generated from dxw/rails-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
118 lines (112 loc) · 3 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.3"
# TODO: remove after next version of Puma is released
# See https://github.com/puma/puma/pull/3532
# `require: false` is needed because you can't actually `require "rackup"`
# due to a different bug: https://github.com/rack/rackup/commit/d03e1789
gem "rackup", "1.0.0", require: false
gem "aasm"
gem "application_insights"
gem "ar-sequence"
gem "aws-sdk-s3", require: false
#
# awaiting PR merge here: https://github.com/Azure/azure-storage-ruby/pull/228 due to need for faraday 2
# gem "azure-storage-blob", "~> 2.0", require: false
gem "azure-storage-blob", git: "https://github.com/honeyankit/azure-storage-ruby", ref: "patch-1", require: false
gem "bootsnap", ">= 1.1.0", require: false
gem "coffee-rails", "~> 5.0" # TODO: remove coffee-rails, only used for google analytics
gem "contentful", "~> 2.17"
gem "crawler_detect"
gem "cssbundling-rails", "~> 1.1"
gem "dry-struct"
gem "dry-transformer"
gem "dry-validation"
gem "exception_notification"
gem "flipper"
gem "flipper-active_record"
gem "flipper-ui"
gem "govuk-components"
gem "govuk_design_system_formbuilder", "~> 5"
gem "httparty"
gem "httpclient"
gem "jbuilder", "~> 2.12"
gem "jquery-rails"
gem "jsbundling-rails"
gem "jwt"
gem "liquid"
gem "loaf"
gem "mini_racer"
gem "notifications-ruby-client"
gem "omniauth"
gem "omniauth_openid_connect"
gem "omniauth-rails_csrf_protection"
gem "pandoc-ruby"
gem "paper_trail"
gem "pg"
gem "pg_search"
gem "puma", "~> 6"
gem "pundit"
gem "rails", "~> 7"
gem "redis", "~> 4.8"
gem "redis-namespace"
gem "redis-rails"
gem "rollbar"
gem "scenic"
gem "sidekiq", "~> 6.4"
gem "sidekiq-cron", "~> 1.10"
gem "simple_xlsx_reader"
gem "slack-notifier"
gem "sprockets-rails"
gem "stimulus-rails"
gem "terser"
gem "thor"
gem "turbo-rails"
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
gem "will_paginate", "~> 4.0.0"
gem "wisper", "2.0.1"
group :development, :test do
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "dotenv-rails"
gem "guard-rspec", require: false
gem "i18n-tasks"
gem "knapsack"
gem "pry-byebug"
gem "pry-rails"
gem "rubocop-govuk", require: false
gem "rubocop-performance", require: false
gem "ruby-lsp-rails"
gem "ruby-lsp-rspec", require: false
gem "terminal-notifier"
gem "terminal-notifier-guard", "~> 1.7.0"
end
group :development do
gem "better_errors"
gem "binding_of_caller"
gem "foreman"
gem "listen", ">= 3.8", "< 3.10"
gem "rails_layout"
gem "spring"
gem "spring-commands-rspec"
# Incompatible with spring 3.0 and higher
# gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console", ">= 3.3.0"
gem "yard-junk"
end
group :test do
gem "brakeman"
gem "bullet"
gem "capybara", ">= 2.15"
gem "climate_control"
gem "database_cleaner"
gem "factory_bot_rails"
gem "faker"
gem "mock_redis"
gem "rails-controller-testing"
gem "rspec-rails"
gem "selenium-webdriver"
gem "shoulda-matchers"
gem "simplecov"
gem "webmock"
end