-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
127 lines (121 loc) · 2.77 KB
/
Copy pathGemfile
File metadata and controls
127 lines (121 loc) · 2.77 KB
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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "rails", "~> 8.1.3"
gem "rack", ">= 3.2.5", "< 4"
gem "action-draft"
gem "active_storage_validations"
gem "activestorage-validator"
gem "addressable", ">= 2.9.0"
gem "administrate", "~> 1.0"
gem "administrate-field-active_storage"
gem "administrate-field-ordered_has_many"
gem "administrate-field-scoped_has_many"
gem "ancestry"
gem "attr_json"
gem "auto_strip_attributes"
gem "aws-sdk-s3"
gem "base64", "0.3.0"
gem "bootsnap", require: false
gem "bootstrap"
gem "browser"
gem "cancancan", "~> 3.6"
gem "dartsass-rails"
gem "database_cleaner"
gem "devise"
gem "diffy"
gem "dotenv-rails"
gem "fast_jsonapi", "~> 1.0"
gem "feedjira"
gem "flipflop"
gem "friendly_id"
gem "fuzzy_match"
gem "google-apis-sheets_v4"
gem "honeybadger", "~> 6.9"
gem "httparty"
gem "image_processing", "~> 2.0"
gem "jbuilder"
gem "importmap-rails"
gem "json", ">= 2.19.9"
gem "json-ld", ">= 3.3.1"
gem "kaminari"
gem "listen", ">= 3.0.5", "< 3.11"
gem "lockbox"
gem "mail_form"
gem "meta-tags"
gem "microsoft_graph"
gem "microsoft_graph_mailer"
gem "mimemagic", "0.4.3"
gem "mini_magick"
gem "nokogiri", ">= 1.16"
gem "oauth2"
gem "okcomputer"
gem "omniauth", "~> 2.1.4"
gem "omniauth-google-oauth2"
gem "omniauth-rails_csrf_protection"
gem "paper_trail", git: "https://github.com/paper-trail-gem/paper_trail"
gem "pg"
gem "pg_search"
gem "puma", "~> 8.0.2"
gem "rack-session", ">= 2.1.2"
gem "resolv-replace"
gem "rexml", "~> 3.4.4"
gem "rswag-api"
gem "rswag-ui"
gem "simple_form"
gem "sitemap_generator"
gem "skylight"
gem "solid_queue"
gem "propshaft"
gem "stimulus-rails"
gem "timecop"
gem "turbo-rails"
gem "tzinfo-data"
gem "uri", ">= 1.0.4"
gem "view_component", ">= 4.12.0", "< 5"
gem "yaml_db"
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug"
gem "flamegraph"
gem "json-schema"
gem "pry-rails"
gem "pry-byebug"
gem "rack-mini-profiler"
gem "rb-readline"
gem "rubocop", require: false
gem "rubocop-rails", require: false
gem "rubocop-rspec", require: false
gem "ruby-prof"
gem "stackprof"
gem "vcr"
end
group :development do
gem "brakeman"
gem "faker"
gem "populate"
gem "rails-erd"
gem "spring"
gem "spring-watcher-listen", "~> 2.1.0"
gem "web-console", ">= 3.3.0"
end
group :test do
gem "capybara", ">= 2.15"
gem "factory_bot_rails"
gem "guard-rspec", require: false
gem "mutant-rspec"
gem "orderly"
gem "rails-controller-testing"
gem "rspec-activemodel-mocks"
gem "rspec-rails"
gem "cuprite"
gem "simplecov"
gem "simplecov-lcov"
gem "webmock"
gem "launchy"
gem "shoulda-matchers", "~> 8.0"
end
group :production do
gem "dalli"
gem "connection_pool", "~> 2.5"
end