-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
57 lines (48 loc) · 1.16 KB
/
Gemfile
File metadata and controls
57 lines (48 loc) · 1.16 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
source "https://rubygems.org"
ruby "4.0.1"
gem "bootsnap", require: false
gem "bundler-audit"
gem "pg", "~> 1.1"
gem "puma", "~> 7.2"
gem "rails", "~> 8.1"
gem "propshaft"
gem "stimulus-rails"
gem "turbo-rails"
gem "amazing_print"
gem "counter_culture", "~> 3.12"
gem "cssbundling-rails"
gem "jsbundling-rails"
gem "redis", "~> 5.4"
gem "sidekiq"
gem "sidekiq-scheduler"
gem "activejob-uniqueness", github: "kodehealth/activejob-uniqueness", branch: "main"
gem "rollbar"
gem "strong_migrations"
gem "pagy"
gem "feedjira"
gem "faraday"
gem "faraday-follow_redirects"
gem "resend"
gem "lightning_ui_kit", github: "k0va1/lightning_ui_kit", branch: "master"
# gem "lightning_ui_kit", path: "../lightning_ui_kit"
group :development, :test do
gem "brakeman"
gem "debug"
gem "standard"
gem "standard-rails"
gem "standard-performance"
end
group :development do
gem "web-console"
gem "colorize"
gem "annotaterb"
gem "rack-mini-profiler", require: false
end
group :test do
gem "capybara"
gem "simplecov", require: false
gem "webmock"
end
gem "mocha", "~> 3.0", group: :test
gem "minitest-mock", "~> 5.27", group: :test
gem "selenium-webdriver", "~> 4.40", group: :test