cryptoexchange 0.8.0 → 0.9.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a1bb54be6fb31a9770c153b4c28a886aa64eb4e0
4
- data.tar.gz: cbc0fe5516e3523bacb1918b211bb2df43256883
3
+ metadata.gz: 1bab1c59d48b9604529a0494b1d7885a47309b1b
4
+ data.tar.gz: 06b32ff2be8cf9ad5615484c5466ff37cfda884f
5
5
  SHA512:
6
- metadata.gz: 799a3759ba65451566ec6c4084ad7fcd61a25a562d3a52536058d03773016f3bbc5ecb81d98cef4576086b9adab48ef3bb58087b15372137a21a27e14524b0fa
7
- data.tar.gz: bad6fb4d55364b34e06ced2d611580fc87f9abba4190067233f14515e957456f2ed93a0e21d152836251acdfafcb16c937f1eb135623927fd6b31da0326d5570
6
+ metadata.gz: 32d34a5844b13a0674839aaa63a0d55b1487037a870085d6bb5b9eaa81d5fd6ba6fc5b55fb6408333bf34eb5f12b98799afd159683ac4c0c1765ae1ccde01eb3
7
+ data.tar.gz: 7532ad0aca0c6e0e1ec3f9fc1030ca0f507a9b7bf029c778f19977ad989a2cdbaf944bf1382f2a8e983dcba8fd32fe2b15b38b14010b9c89e24899ce38336ad9
@@ -28,7 +28,7 @@ module Cryptoexchange::Exchanges
28
28
  ASSETS_URL = "#{Cryptoexchange::Exchanges::Kraken::Market::API_URL}/Assets"
29
29
 
30
30
  def assets
31
- fetch_response = HTTP.get(self.class::ASSETS_URL)
31
+ fetch_response = HTTP.timeout(:write => 2, :connect => 5, :read => 8).get(self.class::ASSETS_URL)
32
32
  JSON.parse(fetch_response.to_s)['result']
33
33
  end
34
34
 
@@ -17,7 +17,7 @@ module Cryptoexchange
17
17
  private
18
18
 
19
19
  def http_get(endpoint)
20
- fetch_response = HTTP.get(endpoint)
20
+ fetch_response = HTTP.timeout(:write => 2, :connect => 5, :read => 8).get(endpoint)
21
21
  end
22
22
  end
23
23
  end
@@ -18,7 +18,7 @@ module Cryptoexchange
18
18
  end
19
19
 
20
20
  def fetch_via_api
21
- fetch_response = HTTP.get(self.class::PAIRS_URL)
21
+ fetch_response = HTTP.timeout(:write => 2, :connect => 5, :read => 8).get(self.class::PAIRS_URL)
22
22
  JSON.parse(fetch_response.to_s)
23
23
  end
24
24
 
@@ -1,3 +1,3 @@
1
1
  module Cryptoexchange
2
- VERSION = "0.8.0"
2
+ VERSION = "0.9.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cryptoexchange
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - TM Lee