rubocop-rspec_rails 2.28.0 → 2.28.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: 53524a3483350f80d17572e3e221a777dabb1421999fbbcb37ad30cb182358b1
4
- data.tar.gz: af8ff0697f66b78c197fc34e8dbd207e75a64473075ccb1b65d00650582d80d5
3
+ metadata.gz: 587b169f8af3fab4b25bd367cfc9fe3deffcbee837ca9c49fa6742795f19ef48
4
+ data.tar.gz: 3b6e3fe95ea4d76bb08528e1fe28bded0436fe1b1173e635bc36c0c5b33abbd0
5
5
  SHA512:
6
- metadata.gz: 6b42314769301898bd8723c2c8d5e29eee29cb1952b70e3e4abb892f75e8a13c2129933a3a99de8247510030f208925ab70c5a0a1f1ebaf950595a5c7d540152
7
- data.tar.gz: 9ad058ef82208bb685249e7ed847da8fc4b06b6718033d9153adc6544d28845e91454524531a72f67f25497325876ed140d543e7173b839f72d12044ef37c429
6
+ metadata.gz: 932cdb891ef272752fb4bf842eb5f03e9a23e2cf314a0d30024c41ec9de6781cd412699dd6afbf7c514e55f8f47571e58c5ce5f3d4e2f424e15a928e55af77a2
7
+ data.tar.gz: 6dce99442ffcbbd9c83eb0ad6650e1427be723d32213c1945e86231ac79b1ad5a63e3b373b31f0e20604ff26860a2342305bf499532f82df6d0822b28a8e1dbc
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Master (Unreleased)
4
4
 
5
+ ## 2.28.1 (2024-03-29)
6
+
7
+ - Implicit dependency on RuboCop RSpec. Note that if you use rubocop-rspec_rails, you must also explicitly add rubocop-rspec to the Gemfile, because you are changing to an implicit dependency on RuboCop RSpec. ([@ydah])
8
+
5
9
  ## 2.28.0 (2024-03-28)
6
10
 
7
11
  - Extracted from `rubocop-rspec` into a separate repository. ([@ydah])
data/README.md CHANGED
@@ -9,15 +9,17 @@
9
9
 
10
10
  ## Installation
11
11
 
12
- Just install the `rubocop-rspec_rails` gem
12
+ **This gem implicitly depends on the `rubocop-rspec` gem, so you should install it first.**
13
+ Just install the `rubocop-rspec` and `rubocop-rspec_rails` gem
13
14
 
14
15
  ```bash
15
- gem install rubocop-rspec_rails
16
+ gem install rubocop-rspec rubocop-rspec_rails
16
17
  ```
17
18
 
18
19
  or if you use bundler put this in your `Gemfile`
19
20
 
20
21
  ```ruby
22
+ gem 'rubocop-rspec', require: false
21
23
  gem 'rubocop-rspec_rails', require: false
22
24
  ```
23
25
 
@@ -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.0'
7
+ STRING = '2.28.1'
8
8
  end
9
9
  end
10
10
  end
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.0
4
+ version: 2.28.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benjamin Quorning
@@ -27,20 +27,6 @@ dependencies:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
29
  version: '1.40'
30
- - !ruby/object:Gem::Dependency
31
- name: rubocop-rspec
32
- requirement: !ruby/object:Gem::Requirement
33
- requirements:
34
- - - "~>"
35
- - !ruby/object:Gem::Version
36
- version: '2.27'
37
- type: :runtime
38
- prerelease: false
39
- version_requirements: !ruby/object:Gem::Requirement
40
- requirements:
41
- - - "~>"
42
- - !ruby/object:Gem::Version
43
- version: '2.27'
44
30
  description: |
45
31
  Code style checking for RSpec Rails files.
46
32
  A plugin for the RuboCop code style enforcing & linting tool.
@@ -90,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
90
76
  - !ruby/object:Gem::Version
91
77
  version: '0'
92
78
  requirements: []
93
- rubygems_version: 3.5.3
79
+ rubygems_version: 3.5.7
94
80
  signing_key:
95
81
  specification_version: 4
96
82
  summary: Code style checking for RSpec Rails files