cypress-rails 0.5.2 → 0.5.3

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: e53dca004e45ff69cd1b4564db925a7a2f90a51a0c6d1fd14474195fd56c4e50
4
- data.tar.gz: 3c232334f4f475c57a3b7271f28789cdfcf3cbfcbf9af07ce36dd4d8b1364c5f
3
+ metadata.gz: efaf85898e684adf953cc9951a47fd6c97dde338cb0b5719ed6686dcb7b2b19b
4
+ data.tar.gz: 3685cd5e6be4e515c65da1c4b756e8847ead9899936fd0925b97145332b7b977
5
5
  SHA512:
6
- metadata.gz: 64703f8568b020e2576e9d05a6e622e636ead09298d21850e224a140ae8bc20d5ddc2b7ecd68a42c9b17ebb9c3e174d52f450f92907582df399eb08531e79cf9
7
- data.tar.gz: 8540df300675e162107d198c90cf947ee06154291db96799de82b0112cee745274787205da03963dd07e1780c330367367fa42ae7bcc7edece5b27841333186c
6
+ metadata.gz: '088fbf9e266da8d373d4e8f2b70635dc80956bc38a22c28b74555ed0e5ecf0774188bcf9e35f4d612dbdb4ea94f7c904da82b06c21162a9390edccde254328d4'
7
+ data.tar.gz: 327e0a512b34dfa1157465b77d42a4150cf54d2a93e03ef1f342b388bb5e0dfd9a95d9b30a1b707d3ac819c113d0c9a3cd84f612e71b4e4d55b3d3aced211b8a
data/.standard.yml CHANGED
@@ -1,3 +1,4 @@
1
+ ruby_version: 2.5
1
2
  ignore:
2
3
  - 'vendor/bundle/**/*'
3
4
  - 'example/node_modules/**/*'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.5.3
4
+
5
+ * Fix 2.5 & 2.6 compatibility
6
+ [#100](https://github.com/testdouble/cypress-rails/issues/100)
7
+
3
8
  ## 0.5.2
4
9
 
5
10
  * Fixes a puma deprecation warning
data/Gemfile.lock CHANGED
@@ -1,27 +1,27 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cypress-rails (0.5.2)
4
+ cypress-rails (0.5.3)
5
5
  puma (>= 3.8.0)
6
6
  railties (>= 5.2.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actionpack (6.1.4)
12
- actionview (= 6.1.4)
13
- activesupport (= 6.1.4)
11
+ actionpack (6.1.4.1)
12
+ actionview (= 6.1.4.1)
13
+ activesupport (= 6.1.4.1)
14
14
  rack (~> 2.0, >= 2.0.9)
15
15
  rack-test (>= 0.6.3)
16
16
  rails-dom-testing (~> 2.0)
17
17
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
18
- actionview (6.1.4)
19
- activesupport (= 6.1.4)
18
+ actionview (6.1.4.1)
19
+ activesupport (= 6.1.4.1)
20
20
  builder (~> 3.1)
21
21
  erubi (~> 1.4)
22
22
  rails-dom-testing (~> 2.0)
23
23
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
24
- activesupport (6.1.4)
24
+ activesupport (6.1.4.1)
25
25
  concurrent-ruby (~> 1.0, >= 1.0.2)
26
26
  i18n (>= 1.6, < 2)
27
27
  minitest (>= 5.1)
@@ -41,7 +41,7 @@ GEM
41
41
  mini_portile2 (2.6.1)
42
42
  minitest (5.14.4)
43
43
  nio4r (2.5.8)
44
- nokogiri (1.12.3)
44
+ nokogiri (1.12.4)
45
45
  mini_portile2 (~> 2.6.1)
46
46
  racc (~> 1.4)
47
47
  parallel (1.20.1)
@@ -56,11 +56,11 @@ GEM
56
56
  rails-dom-testing (2.0.3)
57
57
  activesupport (>= 4.2.0)
58
58
  nokogiri (>= 1.6)
59
- rails-html-sanitizer (1.4.1)
59
+ rails-html-sanitizer (1.4.2)
60
60
  loofah (~> 2.3)
61
- railties (6.1.4)
62
- actionpack (= 6.1.4)
63
- activesupport (= 6.1.4)
61
+ railties (6.1.4.1)
62
+ actionpack (= 6.1.4.1)
63
+ activesupport (= 6.1.4.1)
64
64
  method_source
65
65
  rake (>= 0.13)
66
66
  thor (~> 1.0)
@@ -71,7 +71,7 @@ module CypressRails
71
71
  @legacy_saved_pool_configs ||= Hash.new { |hash, key| hash[key] = {} }
72
72
  @saved_pool_configs ||= Hash.new { |hash, key| hash[key] = {} }
73
73
 
74
- ActiveRecord::TestFixtures.instance_method(:setup_shared_connection_pool).bind_call(self)
74
+ ActiveRecord::TestFixtures.instance_method(:setup_shared_connection_pool).bind(self).call
75
75
  end
76
76
  end
77
77
  end
@@ -1,3 +1,3 @@
1
1
  module CypressRails
2
- VERSION = "0.5.2"
2
+ VERSION = "0.5.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cypress-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Searls
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-08-19 00:00:00.000000000 Z
11
+ date: 2021-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties