rubocop-committee 0.1.0 → 0.1.1

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: 85d35285a988e66ac1d5976d7ac3bf7ac7f207015d1fcd352eed7b8bdac60625
4
- data.tar.gz: 6c2d9fa4b9d4d28bcbb596446e750a4befd6f0674301d1f03a1f5a604a5679b7
3
+ metadata.gz: 41386b965b9dd62eb7c3bc00d39a20547f7aa06d0b2efe2aaa4186512310b089
4
+ data.tar.gz: 437cb3e7a79d44bef6d04739b561d1a0cd28bc924474ec0d8b05863fdc16d954
5
5
  SHA512:
6
- metadata.gz: 2af73171d6c98048f001c48be91ebcf2a7c92c1dce94c1af6fb07cb91e1ace600f52d6787c3792dd12929a93e934fa1ac22f3e2db8c91831d21f1e9f65706436
7
- data.tar.gz: 2fcb0125bdece926274d5b9cfab219497126bf3dbc599c386daa8ed3e02069c3a73f710c2de2d0efc98c2d24c213005b822de4c36c54a5181c9ec402a0fe96dc
6
+ metadata.gz: dd861b26292413e85655a365f709ac7af88fbad73118ce91992ba7a86eecb245d3f960d5d78a46b64a1ded70c669f56b8c445397e23039fc110afff0ac01fbfb
7
+ data.tar.gz: 6c78ad6a554b6f80266c7e9cef4003dae98cb1005f5a71cfa19d7fc46c7d6c7b71f88835da81b1382a0b3a46abcf0153bade3ca5b93b1ae71971101c456d0286
data/.rubocop.yml CHANGED
@@ -1,3 +1,5 @@
1
+ inherit_from: .rubocop_todo.yml
2
+
1
3
  require:
2
4
  - rubocop/cop/internal_affairs
3
5
  - rubocop-performance
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
@@ -1,6 +1,12 @@
1
- ## Unreleased
1
+ # Changelog
2
2
 
3
- ## 0.1.0 - 2022-12-29
3
+ ## Master (Unreleased)
4
+
5
+ ## 0.1.1 (2022-12-29)
6
+
7
+ - Add rubocop-rspec in runtime dependency. ([@ydah])
8
+
9
+ ## 0.1.0 (2022-12-29)
4
10
 
5
11
  - Initial release ([@ydah])
6
12
 
data/Gemfile CHANGED
@@ -4,10 +4,9 @@ source "https://rubygems.org"
4
4
 
5
5
  gemspec
6
6
 
7
- gem 'bump', require: false
7
+ gem "bump", require: false
8
8
  gem "rake"
9
9
  gem "rspec"
10
10
  gem "rubocop-performance"
11
11
  gem "rubocop-rake"
12
- gem "rubocop-rspec"
13
12
  gem "yard"
data/README.md CHANGED
@@ -59,7 +59,7 @@ end
59
59
 
60
60
  ## Documentation
61
61
 
62
- You can read more about RuboCop Committee in its official manual.
62
+ You can read more about RuboCop Committee in its [official manual](https://ydah.github.io/rubocop.docs/rubocop-committee/).
63
63
 
64
64
  ## The Cops
65
65
 
@@ -1,5 +1,5 @@
1
1
  name: rubocop-committee
2
2
  title: RuboCop Committee
3
- version: "0.1.0"
3
+ version: "0.1.1"
4
4
  nav:
5
5
  - modules/ROOT/nav.adoc
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module Committee
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  end
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.0
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-28 00:00:00.000000000 Z
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