-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
123 lines (116 loc) · 2.82 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.2"
gem "activestorage-validator"
gem "administrate", "~> 0.20.0"
gem "administrate-field-active_storage"
gem "administrate-field-jsonb"
gem "administrate-field-nested_has_many"
gem "attr_encrypted"
gem "audited"
gem "aws-sdk-s3", require: false
gem "bootsnap", ">= 1.5.1", require: false
gem "cloudflare-rails", "~> 1.1"
gem "combine_pdf", ">= 1.0.18"
gem "connection_pool"
gem "dalli"
gem "enumerize"
gem "faraday", "~> 1.0", require: false # Graphlient requires faraday v1
gem "fog-aws"
gem "geocoder", ">= 1.6.6"
gem "graphlient", "= 0.6.0" # v0.7 causes issues with stubbed requests https://github.com/ashkan18/graphlient/issues/100
gem "htmlentities"
gem "humanize"
gem "jwt"
gem "lograge"
gem "memcachier"
gem "mimemagic"
gem "net-imap"
gem "net-pop"
gem "net-smtp"
gem "nokogiri"
gem "oauth2"
gem "omniauth"
gem "omniauth-oauth2"
gem "omniauth-auth0"
gem "omniauth-rails_csrf_protection"
gem "pagy"
gem "pg"
gem "pg_search"
gem "prawn"
gem "puma"
gem "rack-attack"
gem "rack-cors", require: "rack/cors"
gem "rails", "~> 6.1.7"
gem "rails-healthcheck"
gem "rest-client"
gem "scout_apm"
gem "sentry-rails"
gem "sentry-ruby"
gem "sentry-sidekiq"
gem "sidekiq"
gem "sitemap_generator"
gem "stackprof"
gem "statesman", "= 10.0.0" # Pinned due to bug https://github.com/gocardless/statesman/issues/509
gem "turbolinks"
gem "uglifier"
gem "view_component"
gem "webpacker"
gem "wicked"
# must match the version used to generate the schema
gem "graphql", "<= 1.10.10"
group :development do
gem "better_errors"
gem "binding_of_caller"
end
group :development, :test do
gem "brakeman"
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug"
gem "debase"
gem "dotenv-rails"
gem "interception"
gem "pry"
gem "pry-byebug", "~> 3.10.1"
gem "pry-rails"
gem "pry-rescue"
gem "rails-erd"
gem "ruby-debug-ide"
end
# For component previews
group :staging, :test do
gem "factory_bot_rails"
gem "faker"
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "awesome_print"
gem "erb_lint", require: false
gem "listen"
gem "rack-mini-profiler"
gem "reek"
gem "solargraph"
gem "spring"
gem "spring-watcher-listen"
gem "web-console", ">= 3.3.0"
gem "bullet"
gem "standard"
gem "standard-rails"
end
group :test do
gem "axe-matchers", ">= 2.5.0", require: false
gem "capybara"
gem "climate_control"
gem "guard-rspec", require: false
gem "rails-controller-testing"
gem "rspec-json_expectations"
gem "rspec_junit_formatter"
gem "rspec-mocks"
gem "rspec-rails"
gem "selenium-webdriver", "~> 3.142.7"
gem "shoulda-callback-matchers"
gem "shoulda-matchers"
gem "simplecov"
gem "timecop"
gem "webmock"
end