rubocop-asjer 0.1.0 → 0.2.0

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: d3baa4746687feba0e12f1d08c584524c9bd9305b83fed096327a4cf2634ce03
4
- data.tar.gz: '085b3e1bedd28616edaf83348311646fed5d37e1def1424935d7b416dab4d6f2'
3
+ metadata.gz: 25ed96434badbe450a9dfbf2187bcdb61b1496038c88d38778b1c01452063626
4
+ data.tar.gz: 00e460b51f6d744b2d955224169894b681090bbf310929da3d08154fdf8408a7
5
5
  SHA512:
6
- metadata.gz: fd93f923f955d81e3100ed7e727602b94f428a33fe08493138aa4b0b581f142271a71c3bd56e40e0b6981ffbefd2db659a0d5ed096dd68ff13114410ea39431b
7
- data.tar.gz: 776b58fbb2a39b57e1d0167f32cb2bfb83f0d5c383d752a16f1999eb585673a2f17cee5368ce4dced75b6d33124afb1d43b1eba97b504df8c1c485e886bfe51d
6
+ metadata.gz: 0b1dcd107a8f8e584b64ff24ec45cf800312132a3899fee9a1a45ebc5fc0099ead6db9c33621e98bb48512b28a8451b472a21f3b33a27f70cdf85bff4670edcb
7
+ data.tar.gz: 9551023808f2d84f26a60c66118854de32cdaa4bfe7dc46288675bb914f5e9df47749603c872a341afb0fdf1cd7ca7244405c25e77340f48c60f239ea2ecbc0b
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.1.0"
2
+ ".": "0.2.0"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.0](https://github.com/asjer/rubocop-asjer/compare/v0.1.0...v0.2.0) (2025-12-31)
4
+
5
+
6
+ ### Features
7
+
8
+ * integrate `lint_roller` and refactor as a plugin ([476e97a](https://github.com/asjer/rubocop-asjer/commit/476e97ab7635770a7fc6d9f163c8dd833bc3714f))
9
+
3
10
  ## 0.1.0 (2025-12-31)
4
11
 
5
12
 
data/README.md CHANGED
@@ -21,10 +21,12 @@ bundle install
21
21
  Add to your `.rubocop.yml`:
22
22
 
23
23
  ```yaml
24
- require:
24
+ plugins:
25
25
  - rubocop-asjer
26
26
  ```
27
27
 
28
+ > **Note:** The `plugins` directive requires RuboCop 1.72+. For older versions, use `require: rubocop-asjer` instead.
29
+
28
30
  ## Available Cops
29
31
 
30
32
  ### Asjer/NoDefaultTranslation
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'lint_roller'
4
+
5
+ module RuboCop
6
+ module Asjer
7
+ # A plugin that integrates RuboCop Asjer with RuboCop's plugin system.
8
+ class Plugin < LintRoller::Plugin
9
+ def about
10
+ LintRoller::About.new(
11
+ name: 'rubocop-asjer',
12
+ version: VERSION,
13
+ homepage: 'https://github.com/asjer/rubocop-asjer',
14
+ description: 'A collection of custom RuboCop cops for personal use, including i18n best practices.'
15
+ )
16
+ end
17
+
18
+ def supported?(context)
19
+ context.engine == :rubocop
20
+ end
21
+
22
+ def rules(_context)
23
+ LintRoller::Rules.new(
24
+ type: :path,
25
+ config_format: :rubocop,
26
+ value: Pathname.new(__dir__).join('../../../config/default.yml')
27
+ )
28
+ end
29
+ end
30
+ end
31
+ end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module Asjer
5
- VERSION = '0.1.0'
5
+ VERSION = '0.2.0'
6
6
  end
7
7
  end
data/lib/rubocop/asjer.rb CHANGED
@@ -3,7 +3,7 @@
3
3
  require 'rubocop'
4
4
 
5
5
  require_relative 'asjer/version'
6
- require_relative 'asjer/inject'
6
+ require_relative 'asjer/plugin'
7
7
  require_relative 'cop/asjer/no_default_translation'
8
8
 
9
9
  module RuboCop
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-asjer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Asjer Querido
@@ -9,20 +9,34 @@ bindir: exe
9
9
  cert_chain: []
10
10
  date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: lint_roller
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '1.1'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '1.1'
12
26
  - !ruby/object:Gem::Dependency
13
27
  name: rubocop
14
28
  requirement: !ruby/object:Gem::Requirement
15
29
  requirements:
16
30
  - - ">="
17
31
  - !ruby/object:Gem::Version
18
- version: '1.0'
32
+ version: 1.72.0
19
33
  type: :runtime
20
34
  prerelease: false
21
35
  version_requirements: !ruby/object:Gem::Requirement
22
36
  requirements:
23
37
  - - ">="
24
38
  - !ruby/object:Gem::Version
25
- version: '1.0'
39
+ version: 1.72.0
26
40
  description: A collection of custom RuboCop cops for personal use, including i18n
27
41
  best practices.
28
42
  email:
@@ -40,7 +54,7 @@ files:
40
54
  - greptile.json
41
55
  - lefthook.yml
42
56
  - lib/rubocop/asjer.rb
43
- - lib/rubocop/asjer/inject.rb
57
+ - lib/rubocop/asjer/plugin.rb
44
58
  - lib/rubocop/asjer/version.rb
45
59
  - lib/rubocop/cop/asjer/no_default_translation.rb
46
60
  - release-please-config.json
@@ -53,6 +67,7 @@ metadata:
53
67
  source_code_uri: https://github.com/asjer/rubocop-asjer
54
68
  changelog_uri: https://github.com/asjer/rubocop-asjer/blob/main/CHANGELOG.md
55
69
  rubygems_mfa_required: 'true'
70
+ default_lint_roller_plugin: RuboCop::Asjer::Plugin
56
71
  rdoc_options: []
57
72
  require_paths:
58
73
  - lib
@@ -1,20 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'yaml'
4
-
5
- module RuboCop
6
- module Asjer
7
- # Injects the default configuration into RuboCop
8
- class Inject
9
- def self.defaults!
10
- path = File.expand_path('../../../config/default.yml', __dir__)
11
- hash = YAML.safe_load_file(path)
12
- config = RuboCop::Config.new(hash, path)
13
- config = RuboCop::ConfigLoader.merge_with_default(config, path)
14
- RuboCop::ConfigLoader.instance_variable_set(:@default_configuration, config)
15
- end
16
- end
17
- end
18
- end
19
-
20
- RuboCop::Asjer::Inject.defaults!