rubocop-csa 0.0.1 → 0.0.2
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/README.md +2 -0
- data/config/default.yml +8 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 89fe13a8bc9300fd5a34b42e34656612e6908df0cc30745c35a4d857faa71c04
|
|
4
|
+
data.tar.gz: e748efe8d4a4f4c92634514c554f9413e249ef806391c399b465a0d8ef512d49
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6117db81a72cbcd44027ac4ae48078eda1782d4c693e20b913d4492605940b4aecabc9e92854389a84977f4ce705d1c8b181d22aef0322f629c38638c4963bc0
|
|
7
|
+
data.tar.gz: 19bf9dcc4d7b0645d787aa8c3d81355ee9e591e3ce25409b387ed07c3a05d0b2aeac1cf4dfcfedfd4f43a02ee7a8a3a34ef48adaa82a1914ef399d95cc0d4634
|
data/README.md
CHANGED
|
@@ -15,6 +15,7 @@ Provides a centralized location for CSA's commonly used RuboCop overrides.
|
|
|
15
15
|
|
|
16
16
|
```ruby
|
|
17
17
|
gem 'rubocop-csa'
|
|
18
|
+
gem 'rubocop-faker'
|
|
18
19
|
gem 'rubocop-rails'
|
|
19
20
|
gem 'rubocop-rspec'
|
|
20
21
|
```
|
|
@@ -33,6 +34,7 @@ inherit_gem:
|
|
|
33
34
|
|
|
34
35
|
```ruby
|
|
35
36
|
gem 'rubocop-csa'
|
|
37
|
+
gem 'rubocop-faker'
|
|
36
38
|
gem 'rubocop-rspec'
|
|
37
39
|
```
|
|
38
40
|
|
data/config/default.yml
CHANGED
|
@@ -4,6 +4,14 @@ inherit_from:
|
|
|
4
4
|
- _rspec.yml
|
|
5
5
|
- _style.yml
|
|
6
6
|
|
|
7
|
+
##
|
|
8
|
+
# Merge instead of overwriting. For more details, see:
|
|
9
|
+
# https://docs.rubocop.org/rubocop/configuration.html#merging-arrays-using-inherit_mode
|
|
10
|
+
#
|
|
11
|
+
inherit_mode:
|
|
12
|
+
merge:
|
|
13
|
+
- Exclude
|
|
14
|
+
|
|
7
15
|
require:
|
|
8
16
|
- rubocop-rake
|
|
9
17
|
- rubocop-performance
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-csa
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Cloud Security Alliance
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-07-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -127,8 +127,8 @@ licenses:
|
|
|
127
127
|
- Apache-2.0
|
|
128
128
|
metadata:
|
|
129
129
|
bug_tracker_uri: https://github.com/CloudSecurityAlliance/rubocop-csa/issues
|
|
130
|
-
changelog_uri: https://github.com/CloudSecurityAlliance/rubocop-csa/releases/tag/v0.0.
|
|
131
|
-
source_code_uri: https://github.com/CloudSecurityAlliance/rubocop-csa/tree/v0.0.
|
|
130
|
+
changelog_uri: https://github.com/CloudSecurityAlliance/rubocop-csa/releases/tag/v0.0.2
|
|
131
|
+
source_code_uri: https://github.com/CloudSecurityAlliance/rubocop-csa/tree/v0.0.2
|
|
132
132
|
post_install_message:
|
|
133
133
|
rdoc_options: []
|
|
134
134
|
require_paths:
|