rubocop-ast 1.10.0 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/rubocop/ast/node.rb +3 -3
- data/lib/rubocop/ast/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fc07fcefa159e288e9bfe924e4f974841ce03bc2bd46cca4baf4ea600296b2e8
|
|
4
|
+
data.tar.gz: 7e0eaf77c2f769a2ed491c171b591e53c6e14744d197616792fc45d9b063a9f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5795ea28b4acae46dfe11ccfbd596c87ef0edc9ee20d2a248979bcbbeabefdf812d7a981f9ad648879730114767019a0e894894a6154c456e39fbe0ea9562c29
|
|
7
|
+
data.tar.gz: 5395f0a9f747811636ed1f62d0aecdd43d18d2aac7d00b550a40c81a2f82feb082ad62b381265e9b803df5eef21f15fa3f10d51d3ca2b76517356d338ec94dc4
|
data/lib/rubocop/ast/node.rb
CHANGED
|
@@ -507,20 +507,20 @@ module RuboCop
|
|
|
507
507
|
# @deprecated Use `:class_constructor?`
|
|
508
508
|
# @!method struct_constructor?(node = self)
|
|
509
509
|
def_node_matcher :struct_constructor?, <<~PATTERN
|
|
510
|
-
(block (send #global_const?(:Struct) :new ...) _ $_)
|
|
510
|
+
({block numblock} (send #global_const?(:Struct) :new ...) _ $_)
|
|
511
511
|
PATTERN
|
|
512
512
|
|
|
513
513
|
# @!method class_definition?(node = self)
|
|
514
514
|
def_node_matcher :class_definition?, <<~PATTERN
|
|
515
515
|
{(class _ _ $_)
|
|
516
516
|
(sclass _ $_)
|
|
517
|
-
(block (send #global_const?({:Struct :Class}) :new ...) _ $_)}
|
|
517
|
+
({block numblock} (send #global_const?({:Struct :Class}) :new ...) _ $_)}
|
|
518
518
|
PATTERN
|
|
519
519
|
|
|
520
520
|
# @!method module_definition?(node = self)
|
|
521
521
|
def_node_matcher :module_definition?, <<~PATTERN
|
|
522
522
|
{(module _ $_)
|
|
523
|
-
(block (send #global_const?(:Module) :new ...) _ $_)}
|
|
523
|
+
({block numblock} (send #global_const?(:Module) :new ...) _ $_)}
|
|
524
524
|
PATTERN
|
|
525
525
|
|
|
526
526
|
# Some expressions are evaluated for their value, some for their side
|
data/lib/rubocop/ast/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-ast
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bozhidar Batsov
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2021-08-
|
|
13
|
+
date: 2021-08-24 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: parser
|