factory_bot 5.0.1 → 5.0.2
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/NEWS.md +4 -1
- data/lib/factory_bot/definition.rb +1 -1
- data/lib/factory_bot/factory_runner.rb +1 -1
- data/lib/factory_bot/trait.rb +1 -1
- data/lib/factory_bot/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c8a85e57f19a64402fd04363e3860ece58e6d1b5196cde075cf47973a15cda8a
|
4
|
+
data.tar.gz: 4fb7243c9259094b83de12be38b27bd58d5cdaaec3d13796d07593c0f3846084
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e2fe25c47b767790269c438cf426c55dfc648e4f120eab1bc006fd5c38106deae1db27ae8107ae1aff5c310edf6f8f27116a4c36dd0e296b92feaf30cc8f291
|
7
|
+
data.tar.gz: f7e369608d2a547c2a1fcf57b2f69645b8ea94ff6fb06c5fa71002a0024c2e3ca3e28738379324796f04648e969576ca42b49e181f8c7495b39444079acbaaea
|
data/NEWS.md
CHANGED
@@ -1,10 +1,13 @@
|
|
1
1
|
# News
|
2
2
|
|
3
|
+
## 5.0.2 (February 22, 2019)
|
4
|
+
* Bugfix: raise "Trait not registered" error when passing invalid trait arguments
|
5
|
+
|
3
6
|
## 5.0.1 (February 15, 2019)
|
4
7
|
* Bugfix: Do not raise error when two sequences have the same name
|
5
8
|
in two traits that have the same name
|
6
9
|
|
7
|
-
## 5.0.0
|
10
|
+
## 5.0.0 (February 1, 2019)
|
8
11
|
* Added: Verbose option to include full backtraces in the linting output
|
9
12
|
* Changed: use_parent_strategy now defaults to true, so by default the
|
10
13
|
build strategy will build, rather than create associations
|
data/lib/factory_bot/trait.rb
CHANGED
data/lib/factory_bot/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: factory_bot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Clayton
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2019-02-
|
12
|
+
date: 2019-02-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -279,8 +279,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
279
279
|
- !ruby/object:Gem::Version
|
280
280
|
version: '0'
|
281
281
|
requirements: []
|
282
|
-
|
283
|
-
rubygems_version: 2.7.7
|
282
|
+
rubygems_version: 3.0.1
|
284
283
|
signing_key:
|
285
284
|
specification_version: 4
|
286
285
|
summary: factory_bot provides a framework and DSL for defining and using model instance
|