cypress-on-rails 1.15.0 → 1.15.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 +6 -0
- data/README.md +1 -1
- data/lib/cypress_on_rails/command_executor.rb +2 -2
- data/lib/cypress_on_rails/version.rb +1 -1
- 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: 9cb0dd8412c42d59d5c687cd911a1a41819296f0fd8c8796e58365620be94897
|
4
|
+
data.tar.gz: 0baeb4e448a0f7e069f0774caadb0829f6ecd710f38ef06942674c2114cd9244
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2836bd208f1cb49b4ad0e25c2bd20cfe6b7fcaaac97fa739e7dc10516fb291b0a220a6bab3678f05329c104bf0f596fb4ec8e9fb2f2d28fade4d59299e1c7169
|
7
|
+
data.tar.gz: 783e8a833f7dd2e386b7fa0b245c1ce9c039835a1600e511148f0cb76a584819f5a1a9af88d1681bbd86a8dfefa4a43a389ea871dce18a30224791f0b6e7cd2f
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
## [1.15.1]
|
2
|
+
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.15.0...v1.15.1
|
3
|
+
|
4
|
+
### Fixed
|
5
|
+
* fix cypress_folder deprecation warning by internal code [PR 136](https://github.com/shakacode/cypress-on-rails/pull/136)
|
6
|
+
|
1
7
|
## [1.15.0]
|
2
8
|
[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.14.0...v1.15.0
|
3
9
|
|
data/README.md
CHANGED
@@ -17,7 +17,7 @@ Need help with cypress-on-rails? Contact [ShakaCode](mailto:justin@shakacode.com
|
|
17
17
|
# Totally new to Cypress?
|
18
18
|
Suggest you first learn the basics of Cypress before attempting to integrate with Ruby on Rails
|
19
19
|
|
20
|
-
* [Good start Here](https://docs.cypress.io/examples/
|
20
|
+
* [Good start Here](https://docs.cypress.io/examples/tutorials.html#Best-Practices)
|
21
21
|
|
22
22
|
# Totally new to Playwright?
|
23
23
|
Suggest you first learn the basics of Playwright before attempting to integrate with Ruby on Rails
|
@@ -15,12 +15,12 @@ module CypressOnRails
|
|
15
15
|
|
16
16
|
def self.load_e2e_helper
|
17
17
|
e2e_helper_file = "#{configuration.install_folder}/e2e_helper.rb"
|
18
|
-
cypress_helper_file = "#{configuration.
|
18
|
+
cypress_helper_file = "#{configuration.install_folder}/cypress_helper.rb"
|
19
19
|
if File.exist?(e2e_helper_file)
|
20
20
|
Kernel.require e2e_helper_file
|
21
21
|
elsif File.exist?(cypress_helper_file)
|
22
22
|
Kernel.require cypress_helper_file
|
23
|
-
warn "cypress_helper.rb
|
23
|
+
warn "cypress_helper.rb is deprecated, please rename the file to e2e_helper.rb"
|
24
24
|
else
|
25
25
|
logger.warn "could not find #{e2e_helper_file} nor #{cypress_helper_file}"
|
26
26
|
end
|
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.15.
|
4
|
+
version: 1.15.1
|
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: 2023-07-
|
12
|
+
date: 2023-07-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rack
|