rubocop-rspec_rails 2.28.0 → 2.28.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +4 -2
- data/lib/rubocop/rspec_rails/version.rb +1 -1
- metadata +2 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 587b169f8af3fab4b25bd367cfc9fe3deffcbee837ca9c49fa6742795f19ef48
|
4
|
+
data.tar.gz: 3b6e3fe95ea4d76bb08528e1fe28bded0436fe1b1173e635bc36c0c5b33abbd0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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
|
|
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.
|
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.
|
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
|