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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 329cd3a8f071049a128d6a37daee7ee43a9ce158a9a22d16b1bcafa3f6be94b9
4
- data.tar.gz: 683aa6c815d57a6abc69c0ca5b210baf51202aaa3f8c9de219182f7d9c88865f
3
+ metadata.gz: 894f7c1e0ac785bcd41ca52663e0a28a65d4c92cb44b7c5891785b903cd5cc7f
4
+ data.tar.gz: 11c9b6b3eab63f29481b1db1caaefc956999bdf9d315332c2fb6e7c76fb1c705
5
5
  SHA512:
6
- metadata.gz: bddf78f8851ff8d27dd06964c43632b67124e95768e0f36fc6ce04c6f36ee1b19cc7b891ea59302ee922ac8b683cd7fc67d65b37ce87bac21ca7b50c18ddac44
7
- data.tar.gz: a6cfbe765f4cea6a9383aa94cf86569ede7b7a98bad491044a316a22f08a05c10cdc7f2ad0f6eb0d19ac62e7b30911db7c7bb34061b51136181c3350c128d583
6
+ metadata.gz: d4a206598bc766b5193c811f85d730836f0832b941154d10c8edf1878aa5e68dbf83da7f189041d44771ffd01434a01cf3e88ae39a07679b7da3b208fd4c6879
7
+ data.tar.gz: 85be3986b60be4b7dd57fe95e35c8929fa7601f3c6224256deb3c4de6caf569b76227c4326f7f832bec36ed61350db6d46e8205187b543a8dd43fbc27961d40a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.5
4
+
5
+ * Update rubocop from 1.11.0 to [1.12.1](https://github.com/rubocop-hq/rubocop/releases/tag/v1.12.1)
6
+
3
7
  ## 1.0.4
4
8
 
5
9
  * Workaround RuboCop's CLI from erroring when it detects a cop named
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- standard (1.0.4)
5
- rubocop (= 1.11.0)
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.0.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.4)
27
- rubocop (1.11.0)
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
@@ -747,7 +747,6 @@ Style/Alias:
747
747
 
748
748
  Style/AndOr:
749
749
  Enabled: true
750
- EnforcedStyle: always
751
750
 
752
751
  Style/ArgumentsForwarding:
753
752
  Enabled: true
@@ -6,9 +6,9 @@ module RuboCop
6
6
  end
7
7
  end
8
8
 
9
- class CommentConfig
10
- remove_const :COMMENT_DIRECTIVE_REGEXP
11
- COMMENT_DIRECTIVE_REGEXP = Regexp.new(
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
  )
@@ -1,3 +1,3 @@
1
1
  module Standard
2
- VERSION = Gem::Version.new("1.0.4")
2
+ VERSION = Gem::Version.new("1.0.5")
3
3
  end
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.11.0"
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
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-03-06 00:00:00.000000000 Z
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.11.0
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.11.0
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.3
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