custom_tag 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/custom_tag/middleware.rb +8 -2
- data/lib/custom_tag/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aba8f2f968ae1d62894e5aa84c4847e4402f8de6d3a5bec3b15b35fb80e06729
|
4
|
+
data.tar.gz: 5516364edb4df8a9da7797b31782182bfe52ef220c9c02bf251173223d45744b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 134db783451bce7d6776782c27277e3a55007454339ef3576cb82027f299d8bd2c120c56fc76acbd1bff04f118e95c49403954731d70d9ed6831f1abd82494c5
|
7
|
+
data.tar.gz: 1f0636438ddd5296a9717eb1dd1a85e5dc5c777f6965b2d94f173b9d846299cebce0263aeb3e3e0a1a48de14dc2b6a0277d5858f8c230fee3939738d1b68ca7d
|
data/CHANGELOG.md
CHANGED
@@ -7,9 +7,15 @@ module CustomTag
|
|
7
7
|
def call(env)
|
8
8
|
code, headers, response = @app.call(env)
|
9
9
|
|
10
|
-
|
10
|
+
response_body = if response.respond_to?(:body)
|
11
|
+
response.body
|
12
|
+
else
|
13
|
+
response[0]
|
14
|
+
end
|
11
15
|
|
12
|
-
|
16
|
+
response_body = CustomTag.parse_and_replace(response_body) if headers["Content-Type"]&.include?("text/html")
|
17
|
+
|
18
|
+
[code, headers, [response_body]]
|
13
19
|
end
|
14
20
|
end
|
15
21
|
end
|
data/lib/custom_tag/version.rb
CHANGED