spaceborne 0.1.13 → 0.1.14
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/spaceborne.rb +1 -1
- data/lib/spaceborne/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9a84c2cd26d70a21276b931a599284561b545f1
|
4
|
+
data.tar.gz: a31c0b5dbd86dad43b6359eec40e2f4aa8a33058
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4bf17861fa005414af3b074eec875dcba2690cc448926735c3bc1e5c840c214cbfbd0fb9b68ac0969b42c4f7f81d916067261907caca7d1d7ff211697192b031
|
7
|
+
data.tar.gz: 7ec1c758b2cc5145d2acb6810be07d26768d600a25cbf804db8582de83266159dad59a05a02e710f2e017dde982f27f4e58ca9dc3f8b7a7c03400130902a6002
|
data/lib/spaceborne.rb
CHANGED
@@ -97,7 +97,6 @@ module Airborne
|
|
97
97
|
def handle_proxy(options, local)
|
98
98
|
return unless local[:proxy]
|
99
99
|
RestClient.proxy = local[:proxy]
|
100
|
-
options[:headers].delete(:use_proxy)
|
101
100
|
end
|
102
101
|
|
103
102
|
def calc_body(options, local)
|
@@ -118,6 +117,7 @@ module Airborne
|
|
118
117
|
end
|
119
118
|
|
120
119
|
def make_request(method, url, options = {})
|
120
|
+
@json_body = nil
|
121
121
|
local_options = split_options(options)
|
122
122
|
handle_proxy(options, local_options)
|
123
123
|
hdrs = calc_headers(options, local_options)
|
data/lib/spaceborne/version.rb
CHANGED