standard-rspec 0.2.0 → 0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec0d895ae8406f45ab179d5e65bdc1b48991fbf5bb4289482e7e522eabb6076a
4
- data.tar.gz: 13acd1dec3ed2caa7bc09bf9326ec17ca39f851ee613be2c97e1226354cc3b1d
3
+ metadata.gz: b02820cd6332351c176112c615829c2ba5d239a83f834ef66c010385f71025d2
4
+ data.tar.gz: 185da87bb73a4b43865947ee627a46ffc80c71b80c9a018c7e8a24257986a656
5
5
  SHA512:
6
- metadata.gz: 4387f0c1fb54c3cb8967944c56f1d4f8bb9e75dc5e7a456cf423ed6c7892cfdc673aa385b2e93b84a3125ad8056665a8fbb87b0a29459a7a1192126b6188edcd
7
- data.tar.gz: 15d71effe85f755dbfecd875acef1ce65454538a7ffbd91b5b2a078a74d7a84c16d2f105fba9f697e90f41ce0877a77cedc3ef6b095156dcb13923ff2c44ed67
6
+ metadata.gz: 35892520da97669019ba0375da0585ade8b12b9b9bb26c5bc0886c215c149355f828f7d52e60b0c07790cafb25024cd1680b3b45e6e1673e09331d7f92fcdd77
7
+ data.tar.gz: d03f7b0fa20ea9e4a8e2b30921457ee1ddfd06e5bf1b94e4f0910c984b5114675a48e247d0caf5755be1829bb37774b8994bf27b5ba72da8fc573d46596d2adc
data/CHANGELOG.md CHANGED
@@ -7,3 +7,11 @@
7
7
  ## [0.1.6] - 2023-07-10
8
8
 
9
9
  - Fix cops paths, remove deprecated cops
10
+
11
+ ## [0.2.0] - 2023-07-11
12
+
13
+ - Add action-policy support
14
+
15
+ ## [0.2.1] - 2023-07-11
16
+
17
+ - Remove action-policy support, due to old rubocop version
@@ -3,10 +3,6 @@ require "yaml"
3
3
  module Standard
4
4
  module Rspec
5
5
  class Plugin < LintRoller::Plugin
6
- def initialize(config)
7
- @config = config
8
- end
9
-
10
6
  def about
11
7
  LintRoller::About.new(
12
8
  name: "standard-rspec",
@@ -26,20 +22,12 @@ module Standard
26
22
  LintRoller::Rules.new(
27
23
  type: :object,
28
24
  config_format: :rubocop,
29
- value: rules_with_config_applied
25
+ value: YAML.load_file(Pathname.new(__dir__).join("../../../config/base.yml"), aliases: true)
30
26
  )
31
27
  end
32
28
 
33
29
  private
34
30
 
35
- def rules_with_config_applied
36
- YAML.load_file(Pathname.new(__dir__).join("../../../config/base.yml"), aliases: true).tap do |rules|
37
- if @config["action_policy_enabled"]
38
- rules["inherit_gem"] = { "action_policy" => "config/rubocop-rspec.yml" }
39
- end
40
- end
41
- end
42
-
43
31
  # This is not fantastic.
44
32
  #
45
33
  # When you `require "rubocop-rspec"`, it will not only load the cops,
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Standard
4
4
  module Rspec
5
- VERSION = "0.2.0"
5
+ VERSION = "0.2.1"
6
6
  end
7
7
  end
@@ -1,5 +1,4 @@
1
1
  require "lint_roller"
2
- require "action_policy"
3
2
 
4
3
  require_relative "rspec/version"
5
4
  require_relative "rspec/plugin"
@@ -34,5 +34,4 @@ Gem::Specification.new do |spec|
34
34
  spec.add_dependency "lint_roller", "~> 1.0"
35
35
  spec.add_dependency "rubocop-rspec", "~> 2.22.0"
36
36
  spec.add_dependency "rubocop-factory_bot", "~> 2.22"
37
- spec.add_dependency "action_policy", "~> 0.6.5"
38
37
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standard-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - shilin-anton
@@ -52,20 +52,6 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '2.22'
55
- - !ruby/object:Gem::Dependency
56
- name: action_policy
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: 0.6.5
62
- type: :runtime
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: 0.6.5
69
55
  description:
70
56
  email:
71
57
  - anton.d.shilin@gmail.com