Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a ruby warning when executing with bundle exec rubocop in this repository #288

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,10 @@

## master (unreleased)

### Bug fixes

* [#288](https://github.com/rubocop/rubocop-ast/pull/288): Fix a Ruby warning (`RUBYOPT=-w`) when doing `bundle exec rubocop` during `rubocop-ast` development. ([@Earlopain][])

## 1.31.2 (2024-03-08)

### Bug fixes
Expand Down Expand Up @@ -451,3 +455,4 @@
[@tdeo]: https://github.com/tdeo
[@ydah]: https://github.com/ydah
[@sambostock]: https://github.com/sambostock
[@Earlopain]: https://github.com/Earlopain
2 changes: 1 addition & 1 deletion rubocop-ast.gemspec
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |s|

s.email = 'rubocop@googlegroups.com'
s.files = `git ls-files lib LICENSE.txt README.md`
.split($RS) + %w[
.split($/) + %w[
lib/rubocop/ast/node_pattern/parser.racc.rb
lib/rubocop/ast/node_pattern/lexer.rex.rb
]
Expand Down