td-client 0.8.22 → 0.8.23
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.
- data/ChangeLog +5 -0
- data/lib/td/client.rb +1 -1
- data/lib/td/client/api.rb +12 -1
- data/lib/td/client/version.rb +1 -1
- metadata +2 -2
data/ChangeLog
CHANGED
data/lib/td/client.rb
CHANGED
data/lib/td/client/api.rb
CHANGED
@@ -1195,7 +1195,18 @@ class API
|
|
1195
1195
|
require 'net/https'
|
1196
1196
|
require 'time'
|
1197
1197
|
|
1198
|
-
|
1198
|
+
if proxy = ENV['HTTP_PROXY']
|
1199
|
+
if proxy =~ /\Ahttp:\/\/(.*)\z/
|
1200
|
+
proxy = $~[1]
|
1201
|
+
end
|
1202
|
+
proxy_host, proxy_port = proxy.split(':',2)
|
1203
|
+
proxy_port = (proxy_port ? proxy_port.to_i : 80)
|
1204
|
+
http_class = Net::HTTP::Proxy(proxy_host, proxy_port)
|
1205
|
+
else
|
1206
|
+
http_class = Net::HTTP
|
1207
|
+
end
|
1208
|
+
|
1209
|
+
http = http_class.new(@host, @port)
|
1199
1210
|
if @ssl
|
1200
1211
|
http.use_ssl = true
|
1201
1212
|
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
|
data/lib/td/client/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: td-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.23
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-08-
|
12
|
+
date: 2012-08-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: msgpack
|