rubocop-kyanagi 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d76c791bce89357b5fa2575b1654b2683413d1cb6d44bd50616e410a1cf214a7
4
- data.tar.gz: b85d8ab244c28feaf240d21f98daa82ddb752ffd5a8c5fdd7c1b805c0ea4b141
3
+ metadata.gz: f69dd252e9095c47431ef58d050ce2b41ac09be5d1d42d01ae978f3448245fed
4
+ data.tar.gz: f842516bd11675d2f793d8f40ec54140968fb7fb2c3d20ab8c0d6b67a4d5e9cb
5
5
  SHA512:
6
- metadata.gz: 914b94917ba9084a63e98682dc28137ef4aa265723e69c4350fbb6cb6ad390bd29f9ba8edc2db194a70dd0e131b0543f5b5d04db504d78317621832b7d4904b6
7
- data.tar.gz: fe3fe8262f6e17ef6965cbe7686173a0509bef95524c98d079c8d6dec9d46d2347a289b6b3ea78a63311b5cbb0cdaf5ba16f862f0b8bca5f39e38f72b4a41c06
6
+ metadata.gz: 6482dda7c0e4bbe649e5ae0418814ba7b42dccd77887184fed334bef213d5540484bf1c738b514223b716419aa44006d2ea995e00cf7ee86d3d555ce8505676f
7
+ data.tar.gz: 42064886bdf274f3d9ff9505b9ec69cebe3237f18cc58c022f5e726ba3b080b695dfb222d28c8e2f897a4f791c7da5c02e37ec00ae59715041621ea4d32e100b
data/CHANGELOG.md ADDED
@@ -0,0 +1,6 @@
1
+ # rubocop-kyanagi ChangeLog
2
+
3
+ ## 0.0.2 (2025-05-14)
4
+
5
+ * Migrate to plugin system
6
+ https://docs.rubocop.org/rubocop/plugin_migration_guide.html
data/README.md CHANGED
@@ -7,7 +7,7 @@ My personal RuboCop configurations.
7
7
  Add the following entry to your Gemfile:
8
8
 
9
9
  ```ruby
10
- gem "kyanagi_cop", require: false, group: [:development]
10
+ gem "rubocop-kyanagi", require: false, group: [:development]
11
11
  ```
12
12
 
13
13
  Then run `bundle install`.
@@ -16,7 +16,7 @@ Edit your `.rubocop.yml`:
16
16
 
17
17
  ```yml
18
18
  inherit_gem:
19
- kyanagi_cop:
19
+ rubocop-kyanagi:
20
20
  - ruby.yml
21
21
  - rails.yml
22
22
  - rspec.yml
data/factory_bot.yml CHANGED
@@ -1,4 +1,4 @@
1
- require:
1
+ plugins:
2
2
  - rubocop-factory_bot
3
3
 
4
4
  AllCops:
data/rails.yml CHANGED
@@ -1,4 +1,4 @@
1
- require:
1
+ plugins:
2
2
  - rubocop-rails
3
3
 
4
4
  AllCops:
data/rspec.yml CHANGED
@@ -1,4 +1,4 @@
1
- require:
1
+ plugins:
2
2
  - rubocop-rspec
3
3
 
4
4
  AllCops:
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "rubocop-kyanagi"
5
- spec.version = "0.0.1"
5
+ spec.version = "0.0.2"
6
6
  spec.authors = ["Kouhei Yanagita"]
7
7
  spec.email = ["yanagi@shakenbu.org"]
8
8
 
@@ -16,6 +16,7 @@ Gem::Specification.new do |spec|
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0")
18
18
 
19
+ spec.add_dependency "rubocop", ">= 1.72"
19
20
  spec.add_dependency "rubocop-rubycw"
20
21
  spec.add_dependency "rubocop-performance"
21
22
  spec.add_dependency "rubocop-rails"
data/ruby.yml CHANGED
@@ -1,4 +1,4 @@
1
- require:
1
+ plugins:
2
2
  - rubocop-rubycw
3
3
  - rubocop-performance
4
4
 
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-kyanagi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Yanagita
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-17 00:00:00.000000000 Z
11
+ date: 2025-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rubocop
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '1.72'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '1.72'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: rubocop-rubycw
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -87,12 +101,13 @@ executables: []
87
101
  extensions: []
88
102
  extra_rdoc_files: []
89
103
  files:
104
+ - CHANGELOG.md
90
105
  - LICENSE.txt
91
106
  - README.md
92
107
  - factory_bot.yml
93
- - kyanagi_cop.gemspec
94
108
  - rails.yml
95
109
  - rspec.yml
110
+ - rubocop-kyanagi.gemspec
96
111
  - ruby.yml
97
112
  homepage: https://github.com/kyanagi/rubocop-kyanagi
98
113
  licenses: