rubocop-gem_dev 0.5.0 → 0.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a1eea19ae1220ec926df2b4285eb76c4f0a4206cde251e9f546f3ed247ba7172
4
- data.tar.gz: 993bf47149697512ebc3517f8f40714a505d44b38418dc322332442921ebeeac
3
+ metadata.gz: '09526af775d375ada4c1806acd59d4b009776167987f78f92c97cb61e2dae5c9'
4
+ data.tar.gz: e13484393953ddb96d46e43a8c42cd44b8fb12ef5441613873942a797e21bd22
5
5
  SHA512:
6
- metadata.gz: 1d91315bcbe0af675099dd33a01a93facaac4fdd628c6691a47a34f3b86e467243fa74a52a8960d55b24e4081aff30903cc52a875694bc278052556a51167d90
7
- data.tar.gz: b9875d703050435cfc76ac67d66f053d62d156d39c2cde3182372ef3a857ff1331d0e0636a7ac623159f49541ceef01e2fa8b073378d645ef85573ea486dd5df
6
+ metadata.gz: 93c5aa083a90e17ef92aac591ef3933b055cc8f4d49317db1988e3f8852ea2b9a4ea26f23d7b29015791d8b8bf530face2346a91c2a548f92ca4cf1ff899eb07
7
+ data.tar.gz: d839e51ebb2433650876fe579bfb716f020e8ea31f6babb76226b3390c0a102dc2cd58653f51ea22a63cb6c1beee87a21a87d6e215854a20244c736ada6dbdd9
data/config/rubocop.yml CHANGED
@@ -11,6 +11,10 @@ AllCops:
11
11
  Bundler/GemVersion:
12
12
  Enabled: false
13
13
 
14
+ # `::File` is usually too verbose, enable this when we need
15
+ Lint/ConstantResolution:
16
+ Enabled: false
17
+
14
18
  # ABC size 20 is pretty well-done actually.
15
19
  Metrics/AbcSize:
16
20
  Max: 20
@@ -19,6 +23,16 @@ Metrics/AbcSize:
19
23
  Style/Copyright:
20
24
  Enabled: false
21
25
 
26
+ # This is too convenient
27
+ Style/DisableCopsWithinSourceCodeDirective:
28
+ Enabled: false
29
+
30
+ # Test files don't need to have documentation
31
+ Style/Documentation:
32
+ Exclude:
33
+ - 'test/**/*'
34
+ - 'spec/**/*'
35
+
22
36
  # Double negation is a famous Ruby idiom,
23
37
  # why not using it with confidence?
24
38
  Style/DoubleNegation:
@@ -30,7 +44,7 @@ Style/InlineComment:
30
44
 
31
45
  # These methods are often used without parentheses
32
46
  Style/MethodCallWithArgsParentheses:
33
- AllowedMethods: ['require', 'require_relative', 'include', 'extend', 'puts', 'p', 'warn', 'raise', 'send', 'public_send', 'alias_method']
47
+ AllowedMethods: ['require', 'require_relative', 'include', 'extend', 'puts', 'p', 'pp', 'warn', 'raise', 'send', 'public_send', 'alias_method']
34
48
 
35
49
  # Changing require order affects code execution
36
50
  # This should not be a style cop
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module GemDev
5
- VERSION = "0.5.0"
5
+ VERSION = "0.6.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-gem_dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OKURA Masafumi
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-02-05 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: RuboCop configuration for gem development
14
13
  email:
@@ -36,7 +35,6 @@ metadata:
36
35
  homepage_uri: https://github.com/okuramasafumi/rubocop-sensible
37
36
  source_code_uri: https://github.com/okuramasafumi/rubocop-sensible/rubocop-gem_dev
38
37
  changelog_uri: https://github.com/okuramasafumi/rubocop-sensible/rubocop-gem_dev/blob/master/CHANGELOG.md
39
- post_install_message:
40
38
  rdoc_options: []
41
39
  require_paths:
42
40
  - lib
@@ -51,8 +49,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
51
49
  - !ruby/object:Gem::Version
52
50
  version: '0'
53
51
  requirements: []
54
- rubygems_version: 3.5.5
55
- signing_key:
52
+ rubygems_version: 3.6.7
56
53
  specification_version: 4
57
54
  summary: RuboCop configuration for gem development
58
55
  test_files: []