-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
56 lines (47 loc) · 1.58 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.4" # Ruby > 3
gem "rails", "~> 7.0.4", ">= 7.0.4.3" # Rails version
# gem "sprockets-rails" # Do we need this - TODO: check
gem "pg", "~> 1.1" # Use postgresql as the database for Active Record
gem "puma", "~> 5.0" # Use the Puma web server [https://github.com/puma/puma]
# Bundle and process CSS [https://github.com/rails/cssbundling-rails]
# gem "cssbundling-rails" # TODO: check is needed with vite
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
#
gem 'devise'
gem 'fast_excel'
gem 'kaminari'
gem 'nilify_blanks'
gem 'rails-i18n', '~> 7.0.0'
gem 'jsonapi-serializer'
gem 'jsonapi.rb'
gem 'mobility', '~> 1.3.0.rc1'
gem "nokogiri"
gem 'pundit'
gem 'ransack'
gem 'routing-filter'
gem "vite_rails", "~> 3.0"
gem 'vite_plugin_legacy'
gem 'with_advisory_lock'
group :staging, :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem "brakeman" # vulnerability and static analysis
gem "ruby_audit" # checks for CVEs affecting Ruby and RubyGems
gem 'faker'
gem 'rspec'
gem 'rspec-rails'
gem 'factory_bot_rails'
end
group :development, :test do
gem "cypress-rails"
end
group :test do
# gem 'database_cleaner', group: :test
gem 'database_cleaner-active_record'
end
group :development do
gem 'rubocop'
end