Skip to content

Commit

Permalink
Merge pull request #103 from lxxxvi/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
lxxxvi committed Mar 29, 2024
2 parents a975137 + 86231c6 commit ed5c43b
Show file tree
Hide file tree
Showing 4 changed files with 149 additions and 133 deletions.
17 changes: 16 additions & 1 deletion .rubocop.yml
Expand Up @@ -8,14 +8,14 @@ AllCops:
Exclude:
- bin/**/*
- db/schema.rb
- node_modules/**/*
- tmp/**/*
- vendor/**/*

Rails:
Enabled: true

Capybara/ClickLinkOrButtonStyle:
EnforcedStyle: strict
Enabled: true

Capybara/MatchStyle:
Expand All @@ -30,6 +30,9 @@ Capybara/RSpec/HaveSelector:
Capybara/RSpec/PredicateMatcher:
Enabled: true

Capybara/RedundantWithinFind:
Enabled: true

Capybara/SpecificActions:
Enabled: true

Expand Down Expand Up @@ -144,9 +147,15 @@ Lint/IdentityComparison:
Lint/IncompatibleIoSelectWithFiberScheduler:
Enabled: true

Lint/ItWithoutArgumentsInBlock:
Enabled: true

Lint/LambdaWithoutLiteralBlock:
Enabled: true

Lint/LiteralAssignmentInCondition:
Enabled: true

Lint/MissingSuper:
Enabled: true

Expand Down Expand Up @@ -291,6 +300,9 @@ Rails/DurationArithmetic:
Rails/EagerEvaluationLogMessage:
Enabled: true

Rails/EnvLocal:
Enabled: true

Rails/ExpandedDateRange:
Enabled: true

Expand Down Expand Up @@ -666,6 +678,9 @@ Style/StringConcatenation:
Style/StringLiterals:
EnforcedStyle: double_quotes

Style/SuperWithArgsParentheses:
Enabled: true

Style/SwapValues:
Enabled: true

Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
@@ -1 +1 @@
3.2.2
3.3.0
6 changes: 3 additions & 3 deletions Gemfile
@@ -1,15 +1,15 @@
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby "3.2.2"
ruby "3.3.0"

gem "bootsnap", require: false
gem "bugsnag"
gem "carrierwave-aws"
gem "haml-rails"
gem "importmap-rails"
gem "pagy"
gem "pg", ">= 0.18"
gem "pg"
gem "propshaft"
gem "puma"
gem "rails"
Expand All @@ -19,7 +19,7 @@ gem "turbo-rails"
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]

group :development, :test do
gem "debug", "1.7.0", platforms: %i[mri mingw x64_mingw]
gem "debug"
gem "rubocop", require: false
gem "rubocop-capybara", require: false
gem "rubocop-rails", require: false
Expand Down

0 comments on commit ed5c43b

Please sign in to comment.