cypress-on-rails 1.4.1 → 1.4.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3539179f3a9e5d659797959cb90076cc26fab30195d4692f5c6baa01adf44b0
|
4
|
+
data.tar.gz: d87eca7c08735de0fa4ab81a107e924b2e61d21857df79bd56c92afaca3ac1c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3059da5ecf3664939b2151609f921a434863725e716606a681bec9f74e677319d9e7a3078830a63262a8805c9584120d0d05f7bce08ad2f7101e2f3363bcf29e
|
7
|
+
data.tar.gz: 032c375f6ed7b145f7f6aa9a496f7d123a346c9efa084936f86f0f0b27cc3ac335c5d2b0bb07015b3a4abc7edfe745fbc2f65fb1b5872bbbfd69c7949acc0b86
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## [1.4.2]
|
2
|
+
|
3
|
+
### Fixed
|
4
|
+
* update generator to use full paths for Factory files [PR 33](https://github.com/shakacode/cypress-on-rails/pull/33).
|
5
|
+
|
1
6
|
## [1.4.1]
|
2
7
|
|
3
8
|
### Fixed
|
@@ -73,7 +78,8 @@
|
|
73
78
|
## 0.1.2 (2017-10-31)
|
74
79
|
* First release.
|
75
80
|
|
76
|
-
[Unreleased]: https://github.com/shakacode/cypress-on-rails/compare/v1.4.
|
81
|
+
[Unreleased]: https://github.com/shakacode/cypress-on-rails/compare/v1.4.2...master
|
82
|
+
[1.4.2]: https://github.com/shakacode/cypress-on-rails/compare/v1.4.1...v1.4.2
|
77
83
|
[1.4.1]: https://github.com/shakacode/cypress-on-rails/compare/v1.4.0...v1.4.1
|
78
84
|
[1.4.0]: https://github.com/shakacode/cypress-on-rails/compare/v1.3.0...v1.4.0
|
79
85
|
[1.3.0]: https://github.com/shakacode/cypress-on-rails/compare/v1.2.1...v1.3.0
|
@@ -26,5 +26,8 @@ factory = FactoryGirl if defined?(FactoryGirl)
|
|
26
26
|
CypressOnRails::SmartFactoryWrapper.configure(
|
27
27
|
always_reload: !Rails.configuration.cache_classes,
|
28
28
|
factory: factory,
|
29
|
-
files:
|
29
|
+
files: [
|
30
|
+
Rails.root.join('spec', 'factories.rb'),
|
31
|
+
Rails.root.join('spec', 'factories', '**', '*.rb')
|
32
|
+
]
|
30
33
|
)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cypress-on-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- miceportal team
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2019-
|
12
|
+
date: 2019-08-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rack
|