rubocop-committee 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +2 -0
- data/.rubocop_todo.yml +12 -0
- data/CHANGELOG.md +8 -2
- data/Gemfile +1 -2
- data/README.md +1 -1
- data/docs/{modules/antora.yml → antora.yml} +1 -1
- data/lib/rubocop/committee/version.rb +1 -1
- metadata +18 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 41386b965b9dd62eb7c3bc00d39a20547f7aa06d0b2efe2aaa4186512310b089
|
4
|
+
data.tar.gz: 437cb3e7a79d44bef6d04739b561d1a0cd28bc924474ec0d8b05863fdc16d954
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd861b26292413e85655a365f709ac7af88fbad73118ce91992ba7a86eecb245d3f960d5d78a46b64a1ded70c669f56b8c445397e23039fc110afff0ac01fbfb
|
7
|
+
data.tar.gz: 6c78ad6a554b6f80266c7e9cef4003dae98cb1005f5a71cfa19d7fc46c7d6c7b71f88835da81b1382a0b3a46abcf0153bade3ca5b93b1ae71971101c456d0286
|
data/.rubocop.yml
CHANGED
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config --auto-gen-only-exclude --no-exclude-limit --no-auto-gen-timestamp`
|
3
|
+
# using RuboCop version 1.41.1.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 6
|
10
|
+
Rake/MethodDefinitionInTask:
|
11
|
+
Exclude:
|
12
|
+
- 'tasks/cut_release.rake'
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-committee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ydah
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -24,6 +24,20 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rubocop-rspec
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
27
41
|
description: |
|
28
42
|
Automatic committee code style checking tool.
|
29
43
|
A RuboCop extension focused on enforcing committee.
|
@@ -36,6 +50,7 @@ files:
|
|
36
50
|
- ".codespellignore"
|
37
51
|
- ".rspec"
|
38
52
|
- ".rubocop.yml"
|
53
|
+
- ".rubocop_todo.yml"
|
39
54
|
- ".yamllint.yml"
|
40
55
|
- ".yardopts"
|
41
56
|
- CHANGELOG.md
|
@@ -45,13 +60,13 @@ files:
|
|
45
60
|
- README.md
|
46
61
|
- Rakefile
|
47
62
|
- config/default.yml
|
63
|
+
- docs/antora.yml
|
48
64
|
- docs/modules/ROOT/nav.adoc
|
49
65
|
- docs/modules/ROOT/pages/cops.adoc
|
50
66
|
- docs/modules/ROOT/pages/cops_committee.adoc
|
51
67
|
- docs/modules/ROOT/pages/index.adoc
|
52
68
|
- docs/modules/ROOT/pages/installation.adoc
|
53
69
|
- docs/modules/ROOT/pages/usage.adoc
|
54
|
-
- docs/modules/antora.yml
|
55
70
|
- lib/rubocop-committee.rb
|
56
71
|
- lib/rubocop/committee/inject.rb
|
57
72
|
- lib/rubocop/committee/version.rb
|