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 +4 -4
- data/.travis.yml +1 -1
- data/lib/still_life/action_dispatch_extension.rb +5 -5
- data/lib/still_life/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8cc2a61d9875aec53d3b56e0d303277f7755a38918b5766235e22854a2541cc5
|
|
4
|
+
data.tar.gz: 03fbb461e284cf350cc8a321acfe2b0e40402e031992f0f98968f5ed2003c9d1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da97a656726d605c3485a4c9c96b7056e5fb54e9f3aa2389283288696d518e013735f47ce2245d011a63ef2a4859c474cbf8e56d75f0662ea1526dd0ace1fcb6
|
|
7
|
+
data.tar.gz: f3323f66e2b9ebd5606063aa7c43c2a6d5843c0d5210933d577e44327b7e3996ce2823832db65e036c38b23c2ee0c045cad2384f0f49fdf2e515ad7455c24bd2
|
data/.travis.yml
CHANGED
|
@@ -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
|
data/lib/still_life/version.rb
CHANGED
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.
|
|
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:
|
|
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.
|
|
109
|
+
rubygems_version: 3.2.15
|
|
110
110
|
signing_key:
|
|
111
111
|
specification_version: 4
|
|
112
112
|
summary: Test result HTML recorder
|