rubocop-ast 0.8.0 → 1.0.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/processed_source.rb +4 -1
- data/lib/rubocop/ast/version.rb +1 -1
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 47a3f561646e687bc714f3f176e99c5d5eca2ab24559bedf942f792352c4270e
|
4
|
+
data.tar.gz: c063c635a2436be86d39eb50145d5670e1840e94f50ae3631715737ff7dfd9a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02f8fcec5a73b6ddf0f1f526681fc625cf866cda61a69f3a11a41e70ab3addafed172b6c25218c1583e7247da66aef458559dc5a182d1cee010cdb603dc31f3d
|
7
|
+
data.tar.gz: af3e1390138540f1f728906efad504d7029deb1261b8607d168383511b210d74d73986e63186339cb916a9dda4ae8f116119257f340c687c88fcac7b8c5d83a1
|
@@ -20,6 +20,9 @@ module RuboCop
|
|
20
20
|
new(file, ruby_version, path)
|
21
21
|
end
|
22
22
|
|
23
|
+
INVALID_LEVELS = %i[error fatal].freeze
|
24
|
+
private_constant :INVALID_LEVELS
|
25
|
+
|
23
26
|
def initialize(source, ruby_version, path = nil)
|
24
27
|
# Defaults source encoding to UTF-8, regardless of the encoding it has
|
25
28
|
# been read with, which could be non-utf8 depending on the default
|
@@ -64,7 +67,7 @@ module RuboCop
|
|
64
67
|
def valid_syntax?
|
65
68
|
return false if @parser_error
|
66
69
|
|
67
|
-
@diagnostics.none? { |d|
|
70
|
+
@diagnostics.none? { |d| INVALID_LEVELS.include?(d.level) }
|
68
71
|
end
|
69
72
|
|
70
73
|
# Raw source checksum for tracking infinite loops.
|
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: 0.
|
4
|
+
version: 1.0.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: 2020-10-
|
13
|
+
date: 2020-10-21 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: parser
|
@@ -46,6 +46,20 @@ dependencies:
|
|
46
46
|
- - "<"
|
47
47
|
- !ruby/object:Gem::Version
|
48
48
|
version: '3.0'
|
49
|
+
- !ruby/object:Gem::Dependency
|
50
|
+
name: rubocop-rspec
|
51
|
+
requirement: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - "~>"
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '1.0'
|
56
|
+
type: :development
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - "~>"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '1.0'
|
49
63
|
description: " RuboCop's Node and NodePattern classes.\n"
|
50
64
|
email: rubocop@googlegroups.com
|
51
65
|
executables: []
|
@@ -165,7 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
165
179
|
- !ruby/object:Gem::Version
|
166
180
|
version: '0'
|
167
181
|
requirements: []
|
168
|
-
rubygems_version: 3.1.
|
182
|
+
rubygems_version: 3.1.4
|
169
183
|
signing_key:
|
170
184
|
specification_version: 4
|
171
185
|
summary: RuboCop tools to deal with Ruby code AST.
|