falcon 0.18.8 → 0.18.9
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/lib/falcon/adapters/response.rb +3 -0
- data/lib/falcon/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: d769e67fa1441274e619f4b4a39a60675a8e4da99f0eaf84f3c8a62837072cc6
|
|
4
|
+
data.tar.gz: 1a0a3bf641fcbbcd94378dea7d6b90784aeb753f6a2187996feb812bbe86daf0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb85bf1dac3a2d9608cd439f12876ee522352d6994b0090ddcfd73d4036b788a43fab423edaf716db066c314c8c49047f9e770a7bbed6b56b1437868689cd35c
|
|
7
|
+
data.tar.gz: 7fe38f397c1c06d0b437d54cdcc90ac00fcb27959bafc827bd6d9802dcf88ec02af26afb256d5d4ba7df7aff5fd6e9bc680298fac1c000bd209e5b6885330adc
|
|
@@ -33,6 +33,9 @@ module Falcon
|
|
|
33
33
|
fields.each do |key, value|
|
|
34
34
|
next if key.start_with? 'rack.'
|
|
35
35
|
|
|
36
|
+
# This is a quick fix, but perhaps it should be part of the protocol, because it IS valid for HTTP/1.
|
|
37
|
+
key = key.downcase
|
|
38
|
+
|
|
36
39
|
value.to_s.split("\n").each do |part|
|
|
37
40
|
headers.add(key, part)
|
|
38
41
|
end
|
data/lib/falcon/version.rb
CHANGED