diode 1.3.2 → 1.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/diode/static.rb +2 -2
- 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: 1a336c0eda5cf34b05fe4d4fe013dc181af28163588ede63ba741c76c8e976b9
|
4
|
+
data.tar.gz: e84ea6a14a4b6a8682e0ce74593c23fe828bf36ac19d5072b5a534a4c44eb632
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c86e2f8c48f2c053f4f236113de844f811b42058f9d62895cb00b1db397c22ec221bc577366674a35ecc9c463ab8296c378871f8d7ea280427930035eeb2c056
|
7
|
+
data.tar.gz: b31be1338d45b4999c3688778aacdc7946140444a0293f30cf0c986a3747fd7105e59f687ca782c98e2b79595faa12f3c03bd436a84e74828266d98942f97548
|
data/lib/diode/static.rb
CHANGED
@@ -12,8 +12,8 @@ class Static
|
|
12
12
|
|
13
13
|
def serve(request)
|
14
14
|
return Diode::Response.standard(405) unless request.method == "GET"
|
15
|
-
unless guardian.nil?
|
16
|
-
securityResponse = guardian.call(request)
|
15
|
+
unless @guardian.nil?
|
16
|
+
securityResponse = @guardian.call(request)
|
17
17
|
unless securityResponse.nil? or securityResponse == 200
|
18
18
|
return securityResponse if securityResponse.is_a?(Diode::Response)
|
19
19
|
return Diode::Response.standard(securityResponse) if [400,403,404,405].include?(securityResponse)
|