cryptoexchange 0.10.1 → 0.10.2

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: 94268c378b493a97fcca5ec9ee235397e2923b8e
4
- data.tar.gz: 3aeefe070e7f100999ef6b3cc55a8a01371be68e
3
+ metadata.gz: 4e723deba9b36bead7e75fb8cc9c8c3cc17f095b
4
+ data.tar.gz: 236767ed853c1cb6ce7bd3eb1339157b635685b6
5
5
  SHA512:
6
- metadata.gz: b995b576d40a277c564d2c66dc948e3649538cb37a32d635fa66fbc60b696c6a3acf61c843cacb0dbf6b075323a261b0660a731073f084597b590a5a0c3d2977
7
- data.tar.gz: 09696058af87f9262850f7eea88b466cfd61db6c36c4453a90c75194f16d9e8e7119b07d315f9af61e202eb865ca681f47e6c2ac050cb5771fd192d9432ebc86
6
+ metadata.gz: d2306a293f5d65551859f2a46b4f4491369f72cce39ab2e14e7b3af70a9e3aa9d47a42dd6a00b3f967b0f24b70c0c76cd32fcd04c5223920e79c9f85e29e20c2
7
+ data.tar.gz: 9584e455b767c04226817a234c4e47c84036df3f069d685ce594be92ec0fa9c0718b3999969d654d47208d313cdc5ae04c4f9d8e70ffa0625cc47fcf9b7682d2
@@ -2,7 +2,8 @@ module Cryptoexchange::Exchanges
2
2
  module Okcoin
3
3
  class Market
4
4
  NAME = 'okcoin'
5
- API_URL = 'https://www.okcoin.com/api'
5
+ INT_API_URL = 'https://www.okcoin.com/api/v1'
6
+ CN_API_URL = 'https://www.okcoin.cn/api/v1'
6
7
  end
7
8
  end
8
9
  end
@@ -13,5 +13,5 @@
13
13
  :target: CNY
14
14
  - :base: ETC
15
15
  :target: CNY
16
- - :base: BCH
16
+ - :base: BCC
17
17
  :target: CNY
@@ -16,7 +16,15 @@ module Cryptoexchange::Exchanges
16
16
  def ticker_url(market_pair)
17
17
  base = market_pair.base.downcase
18
18
  target = market_pair.target.downcase
19
- "#{Cryptoexchange::Exchanges::Okcoin::Market::API_URL}/ticker.do?symbol=#{base}_#{target}"
19
+ "#{api_url(target)}/ticker.do?symbol=#{base}_#{target}"
20
+ end
21
+
22
+ def api_url(target)
23
+ if target == 'cny'
24
+ Cryptoexchange::Exchanges::Okcoin::Market::CN_API_URL
25
+ else
26
+ Cryptoexchange::Exchanges::Okcoin::Market::INT_API_URL
27
+ end
20
28
  end
21
29
 
22
30
  def adapt(output, market_pair)
@@ -1,3 +1,3 @@
1
1
  module Cryptoexchange
2
- VERSION = "0.10.1"
2
+ VERSION = "0.10.2"
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.10.1
4
+ version: 0.10.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - TM Lee