Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ AllCops:
NewCops: enable
DisplayCopNames: true
TargetRubyVersion: 3.0.0
SuggestExtensions: false

Include:
- '**/Rakefile'
Expand Down
4 changes: 4 additions & 0 deletions Gemfile.development_dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ group :development, :test do
gem "scss_lint", require: false
gem "spring", "~> 4.0"
gem "lefthook", require: false
# Added for Ruby 3.5+ compatibility to silence warnings
gem "benchmark", require: false
gem "logger", require: false
gem "ostruct", require: false
end

group :test do
Expand Down
6 changes: 6 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ GEM
amazing_print (1.6.0)
ast (2.4.2)
base64 (0.2.0)
benchmark (0.4.1)
bigdecimal (3.1.8)
bootsnap (1.18.3)
msgpack (~> 1.2)
Expand Down Expand Up @@ -160,6 +161,7 @@ GEM
listen (3.9.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
logger (1.7.0)
loofah (2.22.0)
crass (~> 1.0.2)
nokogiri (>= 1.12.0)
Expand Down Expand Up @@ -189,6 +191,7 @@ GEM
nokogiri (1.16.6)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
ostruct (0.6.1)
package_json (0.1.0)
parallel (1.24.0)
parser (3.3.1.0)
Expand Down Expand Up @@ -402,6 +405,7 @@ PLATFORMS

DEPENDENCIES
amazing_print
benchmark
bootsnap
capybara
capybara-screenshot
Expand All @@ -415,6 +419,8 @@ DEPENDENCIES
launchy
lefthook
listen
logger
ostruct
package_json
pry
pry-byebug
Expand Down
Loading