rubocop-rspec_rails 2.28.2 → 2.28.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d6875c71432f95fd0af755bec47d07f7e4bab2dfb5a5e900452c937701b7238
4
- data.tar.gz: 6aea2975dd7cd16af9dc1e8016a3a541c918b27464e883cbcfc102de0a968b5c
3
+ metadata.gz: bb6fd80f5adfc6edb60fb77ecfa69b4aeba6b7a1011d30c70a1e6fee6bb2d417
4
+ data.tar.gz: 6cc5cd4b185823f7fa4f114f3d4b911789d997774c40207132d4ba1d6ab7ce01
5
5
  SHA512:
6
- metadata.gz: 2e579a37fd41b132dc1af257d7b2235aba4e4be5d5a4ff0789a57d93ae4f499991e589acadbd4455ddb7d93423bb09ee07faac5127483a1dfe941a40829164f3
7
- data.tar.gz: 3284eaf43b60448e2048db7374ccb97a54258a4c646fe951d4f9e57af453ff928bbe34719e9fb78d35d91d93c3aab3b5ccd77e2292b260a22277ea38af1aa484
6
+ metadata.gz: 30246a5475ac1ebf858bf1f0765c01a5e6d740fd70fe23b09f5c45ab87dfe673d2983a8826569d0cc9dc678e4be1e52ac2da704cd4f6e950689e862aa6862e5b
7
+ data.tar.gz: 1ba553cf7599cb25c86435f2d50fdb2d005703d855e568fc4fb3b9ef843679ef5f7477a95d37b96573884958a0a2196c36b97b317c8faec96f9db4a0e313abf5
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Master (Unreleased)
4
4
 
5
+ ## 2.28.3 (2024-04-11)
6
+
7
+ - Fix an error for Ambiguous cop name `RSpec/Rails/HttpStatus`. ([@ydah])
8
+
5
9
  ## 2.28.2 (2024-03-31)
6
10
 
7
11
  - Fix a `NameError` by Cross-Referencing. ([@ydah])
@@ -16,7 +16,7 @@ module RuboCop
16
16
  # allow(foo).to receive(:bar)
17
17
  # end
18
18
  #
19
- class AvoidSetupHook < ::RuboCop::Cop::RSpec::Base
19
+ class AvoidSetupHook < ::RuboCop::Cop::Base
20
20
  extend AutoCorrector
21
21
 
22
22
  MSG = 'Use `before` instead of `setup`.'
@@ -57,7 +57,7 @@ module RuboCop
57
57
  # it { is_expected.to have_http_status :success }
58
58
  # it { is_expected.to have_http_status :error }
59
59
  #
60
- class HttpStatus < ::RuboCop::Cop::RSpec::Base
60
+ class HttpStatus < ::RuboCop::Cop::Base
61
61
  extend AutoCorrector
62
62
  include ConfigurableEnforcedStyle
63
63
  RESTRICT_ON_SEND = %i[have_http_status].freeze
@@ -29,7 +29,7 @@ module RuboCop
29
29
  # expect(a).to be(true)
30
30
  # expect(a).to be(false)
31
31
  #
32
- class MinitestAssertions < ::RuboCop::Cop::RSpec::Base
32
+ class MinitestAssertions < ::RuboCop::Cop::Base
33
33
  extend AutoCorrector
34
34
 
35
35
  # :nodoc:
@@ -29,7 +29,7 @@ module RuboCop
29
29
  # # good (with method chain)
30
30
  # expect(foo).to be_invalid.or be_even
31
31
  #
32
- class NegationBeValid < ::RuboCop::Cop::RSpec::Base
32
+ class NegationBeValid < ::RuboCop::Cop::Base
33
33
  extend AutoCorrector
34
34
  include ConfigurableEnforcedStyle
35
35
 
@@ -23,7 +23,7 @@ module RuboCop
23
23
  #
24
24
  # # good
25
25
  # before { freeze_time }
26
- class TravelAround < ::RuboCop::Cop::RSpec::Base
26
+ class TravelAround < ::RuboCop::Cop::Base
27
27
  extend AutoCorrector
28
28
 
29
29
  MSG = 'Prefer to travel in `before` rather than `around`.'
@@ -4,7 +4,7 @@ module RuboCop
4
4
  module RSpecRails
5
5
  # Version information for the RSpec Rails RuboCop plugin.
6
6
  module Version
7
- STRING = '2.28.2'
7
+ STRING = '2.28.3'
8
8
  end
9
9
  end
10
10
  end
@@ -21,7 +21,7 @@ RuboCop::ConfigLoader.inject_defaults!(project_root)
21
21
  # https://github.com/rubocop/rubocop-rspec_rails/issues/8
22
22
  module RuboCop
23
23
  module Cop
24
- class AmbiguousCopName # rubocop:disable Style/Documentation
24
+ class Registry # rubocop:disable Style/Documentation
25
25
  prepend(Module.new do
26
26
  def qualified_cop_name(name, path, warn: true)
27
27
  return super unless name == 'RSpec/Rails/HttpStatus'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-rspec_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.28.2
4
+ version: 2.28.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benjamin Quorning
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2024-03-30 00:00:00.000000000 Z
14
+ date: 2024-04-11 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rubocop
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
76
  - !ruby/object:Gem::Version
77
77
  version: '0'
78
78
  requirements: []
79
- rubygems_version: 3.5.7
79
+ rubygems_version: 3.5.3
80
80
  signing_key:
81
81
  specification_version: 4
82
82
  summary: Code style checking for RSpec Rails files