rubocop-factory_bot 2.27.0 → 2.27.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/rubocop/factory_bot/version.rb +1 -1
- data/lib/rubocop-factory_bot.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d63c5fc151f34030bc31111d00a2bef1cf698cea2770c81f6d7d3b686c41b1a3
|
4
|
+
data.tar.gz: d817138bdc6eee378b98749a3c32b1830aa9112ec2f2e20b384d7fef600aa859
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0355051ee27521c2119e6b77e354dcf2a812b7889df594e672ecb76f70e35cfcb7db9a3fc1d41e8583aa67d0c52ef78edf2d99f6b27884f5649ccff5f9423fc
|
7
|
+
data.tar.gz: eaa8d766097e94234245e4a8b3b9943c31ead6a51e6744c6cc920d98f8e51845671829107fa72bfdee0f5aa81d62286c434566038e8b08b8f61f5771923b3e00
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
## Master (Unreleased)
|
4
4
|
|
5
|
+
## 2.27.1 (2025-03-12)
|
6
|
+
|
7
|
+
- Fix incorrect plugin version. ([@koic])
|
8
|
+
|
5
9
|
## 2.27.0 (2025-03-06)
|
6
10
|
|
7
11
|
- Fix a false positive for `FactoryBot/ConsistentParenthesesStyle` when using traits and omitting hash values. ([@thejonroberts])
|
@@ -105,6 +109,7 @@
|
|
105
109
|
[@jaydorsey]: https://github.com/jaydorsey
|
106
110
|
[@jfragoulis]: https://github.com/jfragoulis
|
107
111
|
[@jonatas]: https://github.com/jonatas
|
112
|
+
[@koic]: https://github.com/koic
|
108
113
|
[@leoarnold]: https://github.com/leoarnold
|
109
114
|
[@liberatys]: https://github.com/Liberatys
|
110
115
|
[@morissetcl]: https://github.com/morissetcl
|
data/lib/rubocop-factory_bot.rb
CHANGED
@@ -8,6 +8,7 @@ require 'rubocop'
|
|
8
8
|
require_relative 'rubocop/factory_bot/factory_bot'
|
9
9
|
require_relative 'rubocop/factory_bot/language'
|
10
10
|
require_relative 'rubocop/factory_bot/plugin'
|
11
|
+
require_relative 'rubocop/factory_bot/version'
|
11
12
|
|
12
13
|
require_relative 'rubocop/cop/factory_bot/mixin/configurable_explicit_only'
|
13
14
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-factory_bot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.27.
|
4
|
+
version: 2.27.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Backus
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
- Andrew Bromwich
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2025-03-
|
14
|
+
date: 2025-03-13 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: lint_roller
|