cypress-rails 0.5.1 → 0.5.2

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: a89d2ae87c67c2df6c45dd8e3642a9ca52b0f3a88b29b4d7e7569dc22579ff76
4
- data.tar.gz: 94d308d83c47086800430e3c8954e068637575f7c4d9e3f4327b1f325600c8dd
3
+ metadata.gz: e53dca004e45ff69cd1b4564db925a7a2f90a51a0c6d1fd14474195fd56c4e50
4
+ data.tar.gz: 3c232334f4f475c57a3b7271f28789cdfcf3cbfcbf9af07ce36dd4d8b1364c5f
5
5
  SHA512:
6
- metadata.gz: b3630cfd6de6541c551163a34c6e513865743b3733a603a492a4328efd5a827d68925757eba5c0de3d7b095b7597f357f653a52e5040542e8e6c979c869805db
7
- data.tar.gz: 0f80be8f0c63d8de21917913b02d83a59d6a436da223c9838b1a0421ca3317bbd5d71289fa60f5021e69d94167453c6b015d4469b61c209e05464449e1bb4034
6
+ metadata.gz: 64703f8568b020e2576e9d05a6e622e636ead09298d21850e224a140ae8bc20d5ddc2b7ecd68a42c9b17ebb9c3e174d52f450f92907582df399eb08531e79cf9
7
+ data.tar.gz: 8540df300675e162107d198c90cf947ee06154291db96799de82b0112cee745274787205da03963dd07e1780c330367367fa42ae7bcc7edece5b27841333186c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.5.2
4
+
5
+ * Fixes a puma deprecation warning
6
+ [#95](https://github.com/testdouble/cypress-rails/pull/95)
7
+
3
8
  ## 0.5.1
4
9
 
5
10
  * Sprinkles two instance variables to the custom transaction manager that cribs
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cypress-rails (0.5.1)
4
+ cypress-rails (0.5.2)
5
5
  puma (>= 3.8.0)
6
6
  railties (>= 5.2.0)
7
7
 
@@ -34,20 +34,20 @@ GEM
34
34
  erubi (1.10.0)
35
35
  i18n (1.8.10)
36
36
  concurrent-ruby (~> 1.0)
37
- loofah (2.10.0)
37
+ loofah (2.12.0)
38
38
  crass (~> 1.0.2)
39
39
  nokogiri (>= 1.5.9)
40
40
  method_source (1.0.0)
41
- mini_portile2 (2.5.3)
41
+ mini_portile2 (2.6.1)
42
42
  minitest (5.14.4)
43
- nio4r (2.5.7)
44
- nokogiri (1.11.7)
45
- mini_portile2 (~> 2.5.0)
43
+ nio4r (2.5.8)
44
+ nokogiri (1.12.3)
45
+ mini_portile2 (~> 2.6.1)
46
46
  racc (~> 1.4)
47
47
  parallel (1.20.1)
48
48
  parser (3.0.1.1)
49
49
  ast (~> 2.4.1)
50
- puma (5.3.2)
50
+ puma (5.4.0)
51
51
  nio4r (~> 2.0)
52
52
  racc (1.5.2)
53
53
  rack (2.2.3)
@@ -56,7 +56,7 @@ 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.3.0)
59
+ rails-html-sanitizer (1.4.1)
60
60
  loofah (~> 2.3)
61
61
  railties (6.1.4)
62
62
  actionpack (= 6.1.4)
data/README.md CHANGED
@@ -1,7 +1,5 @@
1
1
  # cypress-rails
2
2
 
3
- [![CircleCI](https://circleci.com/gh/testdouble/cypress-rails/tree/main.svg?style=svg)](https://circleci.com/gh/testdouble/cypress-rails/tree/main)
4
-
5
3
  This is a simple gem to make it easier to start writing browser tests with
6
4
  [Cypress](http://cypress.io) for your [Rails](https://rubyonrails.org) apps,
7
5
  regardless of whether your app is server-side rendered HTML, completely
@@ -11,6 +11,7 @@ module CypressRails
11
11
  options = default_options # .merge(options)
12
12
 
13
13
  conf = Rack::Handler::Puma.config(app, options)
14
+ conf.clamp
14
15
  events = ::Puma::Events.stdio
15
16
 
16
17
  puma_ver = Gem::Version.new(::Puma::Const::PUMA_VERSION)
@@ -1,3 +1,3 @@
1
1
  module CypressRails
2
- VERSION = "0.5.1"
2
+ VERSION = "0.5.2"
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.1
4
+ version: 0.5.2
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-07-07 00:00:00.000000000 Z
11
+ date: 2021-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties