rubocop-hk 1.2.0 → 1.2.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.
data/config/default.yml CHANGED
@@ -41,9 +41,6 @@ AllCops:
41
41
  rubocop-minitest: true
42
42
  rubocop-capybara: true
43
43
 
44
- Rails:
45
- Enabled: true
46
-
47
44
  # Modern plugin architecture (RuboCop 1.72+)
48
45
  plugins:
49
46
  - rubocop-rails
@@ -60,3 +57,8 @@ inherit_from:
60
57
  - rubocop-style.yml
61
58
  - rubocop-performance.yml
62
59
 
60
+ # Gem entry point file exception (must match gem name)
61
+ Naming/FileName:
62
+ Exclude:
63
+ - "lib/rubocop-hk.rb"
64
+
@@ -1,7 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rubocop
4
+ # RuboCop HK - Modern RuboCop configuration
4
5
  module Hk
5
- VERSION = "1.2.0" unless defined?(VERSION)
6
+ VERSION = "1.2.1" unless defined?(VERSION)
6
7
  end
7
8
  end
data/lib/rubocop-hk.rb ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Main entry point for rubocop-hk gem
4
+ # This file allows requiring the gem with: require 'rubocop-hk'
5
+ require "rubocop/hk"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-hk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hammad Khan
@@ -96,6 +96,7 @@ files:
96
96
  - config/rubocop-rails.yml
97
97
  - config/rubocop-rspec.yml
98
98
  - config/rubocop-style.yml
99
+ - lib/rubocop-hk.rb
99
100
  - lib/rubocop/hk.rb
100
101
  - lib/rubocop/hk/command.rb
101
102
  - lib/rubocop/hk/version.rb