standard 1.0.4 → 1.0.5
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/CHANGELOG.md +4 -0
- data/Gemfile.lock +5 -5
- data/README.md +1 -0
- data/config/base.yml +0 -1
- data/lib/standard/rubocop/ext.rb +3 -3
- data/lib/standard/version.rb +1 -1
- data/standard.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 894f7c1e0ac785bcd41ca52663e0a28a65d4c92cb44b7c5891785b903cd5cc7f
|
|
4
|
+
data.tar.gz: 11c9b6b3eab63f29481b1db1caaefc956999bdf9d315332c2fb6e7c76fb1c705
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d4a206598bc766b5193c811f85d730836f0832b941154d10c8edf1878aa5e68dbf83da7f189041d44771ffd01434a01cf3e88ae39a07679b7da3b208fd4c6879
|
|
7
|
+
data.tar.gz: 85be3986b60be4b7dd57fe95e35c8929fa7601f3c6224256deb3c4de6caf569b76227c4326f7f832bec36ed61350db6d46e8205187b543a8dd43fbc27961d40a
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
standard (1.0.
|
|
5
|
-
rubocop (= 1.
|
|
4
|
+
standard (1.0.5)
|
|
5
|
+
rubocop (= 1.12.1)
|
|
6
6
|
rubocop-performance (= 1.10.1)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
@@ -15,7 +15,7 @@ GEM
|
|
|
15
15
|
method_source (1.0.0)
|
|
16
16
|
minitest (5.14.4)
|
|
17
17
|
parallel (1.20.1)
|
|
18
|
-
parser (3.0.
|
|
18
|
+
parser (3.0.1.0)
|
|
19
19
|
ast (~> 2.4.1)
|
|
20
20
|
pry (0.14.0)
|
|
21
21
|
coderay (~> 1.1)
|
|
@@ -23,8 +23,8 @@ GEM
|
|
|
23
23
|
rainbow (3.0.0)
|
|
24
24
|
rake (13.0.3)
|
|
25
25
|
regexp_parser (2.1.1)
|
|
26
|
-
rexml (3.2.
|
|
27
|
-
rubocop (1.
|
|
26
|
+
rexml (3.2.5)
|
|
27
|
+
rubocop (1.12.1)
|
|
28
28
|
parallel (~> 1.10)
|
|
29
29
|
parser (>= 3.0.0.0)
|
|
30
30
|
rainbow (>= 2.2.2, < 4.0)
|
data/README.md
CHANGED
|
@@ -211,6 +211,7 @@ if you've used StandardJS.)
|
|
|
211
211
|
* [myRent](https://www.myrent.co.nz)
|
|
212
212
|
* [Renuo](https://www.renuo.ch/)
|
|
213
213
|
* [JetThoughts](https://www.jetthoughts.com/)
|
|
214
|
+
* [Oyster](https://www.oysterhr.com/)
|
|
214
215
|
* And that's about it so far!
|
|
215
216
|
|
|
216
217
|
If your team starts using Standard, [send a pull
|
data/config/base.yml
CHANGED
data/lib/standard/rubocop/ext.rb
CHANGED
|
@@ -6,9 +6,9 @@ module RuboCop
|
|
|
6
6
|
end
|
|
7
7
|
end
|
|
8
8
|
|
|
9
|
-
class
|
|
10
|
-
remove_const :
|
|
11
|
-
|
|
9
|
+
class DirectiveComment
|
|
10
|
+
remove_const :DIRECTIVE_COMMENT_REGEXP
|
|
11
|
+
DIRECTIVE_COMMENT_REGEXP = Regexp.new(
|
|
12
12
|
('# (?:standard|rubocop) : ((?:disable|enable|todo))\b ' + COPS_PATTERN)
|
|
13
13
|
.gsub(" ", '\s*')
|
|
14
14
|
)
|
data/lib/standard/version.rb
CHANGED
data/standard.gemspec
CHANGED
|
@@ -19,6 +19,6 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
20
20
|
spec.require_paths = ["lib"]
|
|
21
21
|
|
|
22
|
-
spec.add_dependency "rubocop", "1.
|
|
22
|
+
spec.add_dependency "rubocop", "1.12.1"
|
|
23
23
|
spec.add_dependency "rubocop-performance", "1.10.1"
|
|
24
24
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: standard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Searls
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-04-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.
|
|
19
|
+
version: 1.12.1
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.
|
|
26
|
+
version: 1.12.1
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rubocop-performance
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -108,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
108
108
|
- !ruby/object:Gem::Version
|
|
109
109
|
version: '0'
|
|
110
110
|
requirements: []
|
|
111
|
-
rubygems_version: 3.2
|
|
111
|
+
rubygems_version: 3.1.2
|
|
112
112
|
signing_key:
|
|
113
113
|
specification_version: 4
|
|
114
114
|
summary: Ruby Style Guide, with linter & automatic code fixer
|