-
- Downloads
Update to Ruby 3.4.1, add Rubocop
parent
683c2933
No related branches found
No related tags found
.rubocop.yml
0 → 100644
source "https://rubygems.org" | source "https://rubygems.org" | ||
ruby "3.3.6" | ruby "3.4.1" | ||
gem "rails", "~> 8.0.1" | gem "rails", "~> 8.0.1" | ||
... | @@ -17,14 +17,18 @@ gem "puma", ">= 5.0" | ... | @@ -17,14 +17,18 @@ gem "puma", ">= 5.0" |
gem "redis", ">= 4.0.1" | gem "redis", ">= 4.0.1" | ||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
gem "tzinfo-data", platforms: %i[ windows jruby ] | gem "tzinfo-data", platforms: %i[windows jruby] | ||
# Reduces boot times through caching; required in config/boot.rb | # Reduces boot times through caching; required in config/boot.rb | ||
gem "bootsnap", require: false | gem "bootsnap", require: false | ||
group :development, :test do | group :development, :test do | ||
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem | # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem | ||
gem "debug", platforms: %i[ mri windows ] | gem "debug", platforms: %i[mri windows] | ||
gem "rubocop-rails-omakase", "~> 1.1" | |||
gem "rubocop-capybara", "~> 2.21" | |||
end | end | ||
group :development do | group :development do | ||
... | @@ -50,8 +54,8 @@ gem "httparty", "> 0" | ... | @@ -50,8 +54,8 @@ gem "httparty", "> 0" |
gem "tailwindcss-rails", "~> 3.1" | gem "tailwindcss-rails", "~> 3.1" | ||
gem "turbo-rails", "~> 2.0" | |||
gem "stimulus-rails", "~> 1.3" | gem "stimulus-rails", "~> 1.3" | ||
gem "turbo-rails", "~> 2.0" | |||
gem "importmap-rails", "~> 2.0" | gem "importmap-rails", "~> 2.0" | ||
... | @@ -59,6 +63,6 @@ gem "icalendar", "~> 2.10" | ... | @@ -59,6 +63,6 @@ gem "icalendar", "~> 2.10" |
gem "telegram-bot-ruby", "~> 2.0" | gem "telegram-bot-ruby", "~> 2.0" | ||
gem 'devise', '~> 4.9' | gem "devise", "~> 4.9" | ||
gem "crono", "~> 2.1" | gem "crono", "~> 2.1" |
Please register or sign in to comment