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: 2ad5c4692223a528962627ffc94284528d76c24cdbcca7ea139c539b0c249a18
4
- data.tar.gz: 1de6cf1dfb288a59b61c9e4f46522889f96fda4b24941bcdef77eeb90880ff4c
3
+ metadata.gz: c3539179f3a9e5d659797959cb90076cc26fab30195d4692f5c6baa01adf44b0
4
+ data.tar.gz: d87eca7c08735de0fa4ab81a107e924b2e61d21857df79bd56c92afaca3ac1c9
5
5
  SHA512:
6
- metadata.gz: '0974c4609d55bd09873faa21f3968e7ce3fc6bb0e7e5807faaaa42dcdae97ac9d7be42464ef9b0711d8f75219b452a5164f936b70e61dd49da9c72c906e0c478'
7
- data.tar.gz: f5dc0a78f0ada8d1e2ac2b0b0a72c407dbe6ca900908cad6cbc97be22d713917c27db7a9be06e876e4f141a9468c7c2ddd552d8aafb06cf7b5dbbe667627b86c
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.1...master
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
@@ -1,3 +1,3 @@
1
1
  module CypressOnRails
2
- VERSION = '1.4.1'
2
+ VERSION = '1.4.2'
3
3
  end
@@ -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: %w(spec/factories.rb ./spec/factories/**/*.rb)
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.1
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-07-21 00:00:00.000000000 Z
12
+ date: 2019-08-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rack