Skip to content

Commit

Permalink
Merge pull request #607 from standardrb/updates-2024-02-13
Browse files Browse the repository at this point in the history
Update rubocop to 1.60.2
  • Loading branch information
czeise committed Feb 13, 2024
2 parents 76093d9 + 9e20e48 commit d11aecb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
12 changes: 7 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleased

* Updates rubocop to [1.60.2](https://github.com/rubocop/rubocop/releases/tag/v1.60.2)

## 1.33.0

* Updates rubocop to [1.59.0](https://github.com/rubocop/rubocop/releases/tag/v1.59.0)
Expand Down Expand Up @@ -59,9 +63,9 @@ plugin that mirrors a rubocop extension
## 1.28.3

* Older ruby support fixes from [@pboling](https://github.com/pboling):
- [#559](https://github.com/standardrb/standard/issues/559)
- [#561](https://github.com/standardrb/standard/issues/560)
- [#561](https://github.com/standardrb/standard/issues/561)
* [#559](https://github.com/standardrb/standard/issues/559)
* [#561](https://github.com/standardrb/standard/issues/560)
* [#561](https://github.com/standardrb/standard/issues/561)

## 1.28.2

Expand Down Expand Up @@ -546,7 +550,6 @@ mutations to RuboCop's default configuration)
* [Performance/DeletePrefix](https://github.com/rubocop-hq/rubocop-performance/pull/105)
* [Performance/DeleteSuffix](https://github.com/rubocop-hq/rubocop-performance/pull/105)


## 0.4.6

* Disable `Naming/BinaryOperatorParameterName` because (when non-ascii method
Expand Down Expand Up @@ -578,7 +581,6 @@ mutations to RuboCop's default configuration)
safe
* Allow comments in empty `when` blocks


## 0.4.1

* add given/given! as `{}` friendly blocks [#172](https://github.com/testdouble/standard/pull/172)
Expand Down
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PATH
standard (1.33.0)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.59.0)
rubocop (~> 1.60)
standard-custom (~> 1.0.0)
standard-performance (~> 1.3)

Expand All @@ -23,19 +23,19 @@ GEM
method_source (1.0.0)
minitest (5.20.0)
parallel (1.23.0)
parser (3.2.2.4)
parser (3.3.0.5)
ast (~> 2.4.1)
racc
racc (1.7.1)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.8.2)
rexml (3.2.6)
rubocop (1.59.0)
rubocop (1.60.2)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.2.4)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/standard/lsp/routes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def initialize(writer, logger, standardizer)
end

def self.handle(name, &block)
define_method("handle_#{name}", &block)
define_method(:"handle_#{name}", &block)
end

def for(name)
Expand Down
2 changes: 1 addition & 1 deletion standard.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]
spec.metadata["rubygems_mfa_required"] = "true"

spec.add_dependency "rubocop", "~> 1.59.0"
spec.add_dependency "rubocop", "~> 1.60"

spec.add_dependency "lint_roller", "~> 1.0"
spec.add_dependency "standard-custom", "~> 1.0.0"
Expand Down

0 comments on commit d11aecb

Please sign in to comment.