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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bc763de97980a2be63d8eac1ca850d9695c7e1778c8678d83cec0de7c8270b37
4
- data.tar.gz: 9c830d9c70faebc8aac3891caa6ab3547cdf66fe9c89d3eda131248086ff55a2
3
+ metadata.gz: 9cb0dd8412c42d59d5c687cd911a1a41819296f0fd8c8796e58365620be94897
4
+ data.tar.gz: 0baeb4e448a0f7e069f0774caadb0829f6ecd710f38ef06942674c2114cd9244
5
5
  SHA512:
6
- metadata.gz: 88104bb87f1ab6933c17495ff3cbe112a27fc8daa5ee97752eb25e72e46d1ca6e2b54b907857650d49455ca3cb30534e6a6e4d02a6d5f240ddc69ea9d9c5cdac
7
- data.tar.gz: 61f547751df2b0500d15b3480732823916a6b3ce0a768cbed696764ec9ddb3853b0d4919e9f2a8249803830b70334f0914c8075d0eb97d84abf68c9835747d1a
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/examples/tutorials.html#Best-Practices)
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.cypress_folder}/cypress_helper.rb"
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 and cypress_folder are deprecated, please use the install generator to create e2e_helper.rb using install_folder"
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
@@ -1,3 +1,3 @@
1
1
  module CypressOnRails
2
- VERSION = '1.15.0'.freeze
2
+ VERSION = '1.15.1'.freeze
3
3
  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.0
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-05 00:00:00.000000000 Z
12
+ date: 2023-07-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rack