google-style 1.26.0 → 1.26.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/google-style.yml +16 -4
- data/lib/google/style/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fa90af2ef1f40c43821166303755429a57f478c0674fa8b3b97a019e53018a3f
|
4
|
+
data.tar.gz: 2f59c7078749ffadb4aa643ae7ad9ffd67785e9db0e9335e0f3979329403a45c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22db03593c84225b5db41a7f4d007131df77b837ca470e4db1d37ee40c72e0324d7b1d211b38c8ca4bfa44e076406595f4b60664ec832a61fd7dd87d6ae1276c
|
7
|
+
data.tar.gz: cd28ec976dbdb2ef46612915178dd2d23a08055a45e5f22634fedb4837e1a309dfaa0bf8a3d2e66222d777358de1c56053a3e3918dada420f361306cf111eac7
|
data/README.md
CHANGED
@@ -47,12 +47,12 @@ specific minor version.
|
|
47
47
|
|
48
48
|
Contributions to this library are always welcome and highly encouraged.
|
49
49
|
|
50
|
-
See the
|
50
|
+
See the {file:CONTRIBUTING.md Contributing Guide}
|
51
51
|
for more information on how to get started.
|
52
52
|
|
53
53
|
Please note that this project is released with a Contributor Code of Conduct. By
|
54
|
-
participating in this project you agree to abide by its terms. See the
|
55
|
-
Conduct
|
54
|
+
participating in this project you agree to abide by its terms. See the {file:CODE_OF_CONDUCT.md Code of
|
55
|
+
Conduct} for more information.
|
56
56
|
|
57
57
|
## License
|
58
58
|
|
data/google-style.yml
CHANGED
@@ -17,10 +17,6 @@ AllCops:
|
|
17
17
|
SuggestExtensions: false
|
18
18
|
TargetRubyVersion: 2.6
|
19
19
|
|
20
|
-
# Added in Rubocop 1.10
|
21
|
-
Gemspec/DateAssignment:
|
22
|
-
Enabled: true
|
23
|
-
|
24
20
|
# Added in Rubocop 1.30
|
25
21
|
Gemspec/DeprecatedAttributeAssignment:
|
26
22
|
Enabled: true
|
@@ -42,6 +38,14 @@ Layout/EmptyLines:
|
|
42
38
|
Layout/HashAlignment:
|
43
39
|
Enabled: false
|
44
40
|
|
41
|
+
# Added in Rubocop 1.31
|
42
|
+
Layout/LineContinuationLeadingSpace:
|
43
|
+
Enabled: true
|
44
|
+
|
45
|
+
# Added in Rubocop 1.31
|
46
|
+
Layout/LineContinuationSpacing:
|
47
|
+
Enabled: true
|
48
|
+
|
45
49
|
# Added in Rubocop 1.18
|
46
50
|
Layout/LineEndStringConcatenationIndentation:
|
47
51
|
Enabled: true
|
@@ -66,6 +70,10 @@ Lint/AmbiguousOperatorPrecedence:
|
|
66
70
|
Lint/AmbiguousRange:
|
67
71
|
Enabled: true
|
68
72
|
|
73
|
+
# Added in Rubocop 1.31
|
74
|
+
Lint/ConstantOverwrittenInRescue:
|
75
|
+
Enabled: true
|
76
|
+
|
69
77
|
# Added in Rubocop 1.8
|
70
78
|
Lint/DeprecatedConstants:
|
71
79
|
Enabled: true
|
@@ -102,6 +110,10 @@ Lint/LambdaWithoutLiteralBlock:
|
|
102
110
|
Lint/NoReturnInBeginEndBlocks:
|
103
111
|
Enabled: true
|
104
112
|
|
113
|
+
# Added in Rubocop 1.31
|
114
|
+
Lint/NonAtomicFileOperation:
|
115
|
+
Enabled: true
|
116
|
+
|
105
117
|
# Added in Rubocop 1.9
|
106
118
|
Lint/NumberedParameterAssignment:
|
107
119
|
Enabled: true
|
data/lib/google/style/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-style
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.26.
|
4
|
+
version: 1.26.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Azuma
|
8
8
|
- Graham Paye
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-
|
12
|
+
date: 2022-06-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rubocop
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: '1.
|
20
|
+
version: '1.31'
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: '1.
|
27
|
+
version: '1.31'
|
28
28
|
description: Shared style guide for Google's ruby projects
|
29
29
|
email:
|
30
30
|
- dazuma@google.com
|
@@ -43,7 +43,7 @@ homepage: https://github.com/googleapis/ruby-style/
|
|
43
43
|
licenses:
|
44
44
|
- Apache-2.0
|
45
45
|
metadata: {}
|
46
|
-
post_install_message:
|
46
|
+
post_install_message:
|
47
47
|
rdoc_options: []
|
48
48
|
require_paths:
|
49
49
|
- lib
|
@@ -58,8 +58,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
58
58
|
- !ruby/object:Gem::Version
|
59
59
|
version: '0'
|
60
60
|
requirements: []
|
61
|
-
rubygems_version: 3.3.
|
62
|
-
signing_key:
|
61
|
+
rubygems_version: 3.3.14
|
62
|
+
signing_key:
|
63
63
|
specification_version: 4
|
64
64
|
summary: Collection of rubocop rules
|
65
65
|
test_files: []
|