still_life 0.2.0 → 0.2.1

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: 92d2486c2d3db425af9db4c7b0632a5aecadd94ea383e13c51e3e9f0fab1f70f
4
- data.tar.gz: 6b8193f48947fec6d8d4bc079582614669ac171b9d87af6bd1c7abc188830469
3
+ metadata.gz: 8cc2a61d9875aec53d3b56e0d303277f7755a38918b5766235e22854a2541cc5
4
+ data.tar.gz: 03fbb461e284cf350cc8a321acfe2b0e40402e031992f0f98968f5ed2003c9d1
5
5
  SHA512:
6
- metadata.gz: 4c09f261b346364ffb7c0c5e487ae97295cb75cfad7de6f7707cbab45e86ae7b4f210d6656d2e74c221e0a4efaf3396af3b7a5f0db39e7ba139b3aa9ab6e14ab
7
- data.tar.gz: b05f324577658154e7c60f1d35b5d919e39ba87a985273056e03197e13733a862361727fa963eb5bd6b2d7691704452e4e722f21c3883f462857a99f7073340f
6
+ metadata.gz: da97a656726d605c3485a4c9c96b7056e5fb54e9f3aa2389283288696d518e013735f47ce2245d011a63ef2a4859c474cbf8e56d75f0662ea1526dd0ace1fcb6
7
+ data.tar.gz: f3323f66e2b9ebd5606063aa7c43c2a6d5843c0d5210933d577e44327b7e3996ce2823832db65e036c38b23c2ee0c045cad2384f0f49fdf2e515ad7455c24bd2
data/.travis.yml CHANGED
@@ -10,7 +10,7 @@ before_install:
10
10
  - sudo apt install -y chromium-chromedriver
11
11
 
12
12
  rvm:
13
- - 2.7.2
13
+ - 2.7.3
14
14
 
15
15
  env:
16
16
  - TEST_FRAMEWORK=test-unit
@@ -4,31 +4,31 @@ module StillLife
4
4
  module ActionDispatchExtension
5
5
  def get(*, **)
6
6
  super.tap do
7
- StillLife.draw(response.body)
7
+ StillLife.draw(response.body) unless response.get_header('Content-Transfer-Encoding') == 'binary'
8
8
  end
9
9
  end
10
10
 
11
11
  def post(*, **)
12
12
  super.tap do
13
- StillLife.draw(response.body)
13
+ StillLife.draw(response.body) unless response.get_header('Content-Transfer-Encoding') == 'binary'
14
14
  end
15
15
  end
16
16
 
17
17
  def put(*, **)
18
18
  super.tap do
19
- StillLife.draw(response.body)
19
+ StillLife.draw(response.body) unless response.get_header('Content-Transfer-Encoding') == 'binary'
20
20
  end
21
21
  end
22
22
 
23
23
  def patch(*, **)
24
24
  super.tap do
25
- StillLife.draw(response.body)
25
+ StillLife.draw(response.body) unless response.get_header('Content-Transfer-Encoding') == 'binary'
26
26
  end
27
27
  end
28
28
 
29
29
  def delete(*, **)
30
30
  super.tap do
31
- StillLife.draw(response.body)
31
+ StillLife.draw(response.body) unless response.get_header('Content-Transfer-Encoding') == 'binary'
32
32
  end
33
33
  end
34
34
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module StillLife
4
- VERSION = '0.2.0'
4
+ VERSION = '0.2.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: still_life
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Akira Matsuda
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-10-12 00:00:00.000000000 Z
11
+ date: 2021-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -106,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
106
  - !ruby/object:Gem::Version
107
107
  version: '0'
108
108
  requirements: []
109
- rubygems_version: 3.2.0.rc.1
109
+ rubygems_version: 3.2.15
110
110
  signing_key:
111
111
  specification_version: 4
112
112
  summary: Test result HTML recorder