Skip to content

Commit

Permalink
Update Rake 13 for development to suppress a warning
Browse files Browse the repository at this point in the history
This PR updates Rake to version 13 to suppress the following warning:

```console
$ bundle exec rake
(snip)

/Users/koic/.rbenv/versions/3.4.1/lib/ruby/gems/3.4.0/gems/rake-12.3.3/lib/rake.rb:33:
warning: ostruct was loaded from the standard library,
but will no longer be part of the default gems starting from Ruby 3.5.0.
You can add ostruct to your Gemfile or gemspec to silence this warning.
```
  • Loading branch information
koic committed Feb 2, 2025
1 parent 0e62e59 commit 69f6ddf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ source "https://rubygems.org"
# Specify your gem's dependencies in rubocop-rubycw.gemspec
gemspec

gem "rake", "~> 12.0"
gem "rake", "~> 13.0"
gem 'rspec'

0 comments on commit 69f6ddf

Please sign in to comment.