-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
71 lines (65 loc) · 1.91 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.4"
gem "aasm", "~> 5.5"
gem "actionmailer-html2text", "~> 0.2.0"
gem "active_model_validates_intersection_of", "~> 3.0"
gem "active_storage_validations", "~> 1.1"
gem "after_commit_everywhere", "~> 1.3"
gem "aws-sdk-s3", "~> 1.143", require: false
gem "bootsnap", "~> 1.18", require: false
gem "csv", "~> 3.3"
gem "devise", "~> 4.9"
gem "dsfr-view-components", "~> 1.5"
gem "front_matter_parser", "~> 1.0"
gem "good_job", "3.21.5"
gem "haml-rails", "~> 2.1"
gem "icalendar", "~> 2.10"
gem "image_processing", "~> 1.12"
gem "kramdown", "~> 2.4"
gem "matrix", "~> 0.4"
gem "mjml-rails", "~> 4.11"
gem "pagy", "~> 6.5"
gem "pg", "~> 1.5"
gem "prawn", "~> 2.4"
gem "prawn-table", "~> 0.2"
gem "progressbar", "~> 1.0"
gem "puma", "~> 6.4"
gem "pundit", "~> 2.3"
gem "rails", "~> 7.1"
gem "ransack", "~> 4.1"
gem "rubyzip", "~> 2.3"
gem "sentry-rails", "~> 5.15"
gem "sentry-ruby", "~> 5.15"
gem "turbo-rails", "~> 1.4"
gem "typhoeus", "~> 1.4"
gem "tzinfo-data", "~> 1.0", platforms: %i[mingw mswin x64_mingw jruby]
gem "view_component", "~> 2.83"
gem "vite_rails", "~> 3.0"
group :development, :test do
gem "debug", ">= 1.0"
gem "factory_bot_rails", "~> 6.2"
gem "launchy", "~> 2.5"
gem "rspec-rails", "~> 6.1"
gem "rubocop", "~> 1.63", require: false
gem "rubocop-rails", "~> 2.24", require: false
end
group :development do
gem "aasm-diagram", "~> 0.1", require: false
gem "foreman", "~> 0.87"
gem "html2haml", "~> 2.3"
gem "htmlbeautifier", "~> 1.4"
gem "pry", "~> 0.14"
gem "rails-erd", "~> 1.7", require: false
gem "solargraph", "~> 0.50"
gem "web-console", "~> 4.2"
end
group :test do
gem "axe-core-capybara", "~> 4.9"
gem "axe-core-rspec", "~> 4.8"
gem "capybara", "~> 3.39"
gem "rspec-sqlimit", "~> 0.0.6"
gem "selenium-webdriver", "~> 4.21"
gem "webmock", "~> 3.23"
end