Module: Peatio::CounosX::Hooks

Defined in:
lib/peatio/counosx/hooks.rb

Constant Summary collapse

BLOCKCHAIN_VERSION_REQUIREMENT =
"~> 1.0.0"
WALLET_VERSION_REQUIREMENT =
"~> 1.0.0"

Class Method Summary collapse

Class Method Details

.check_compatibilityObject



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/peatio/counosx/hooks.rb', line 8

def check_compatibility
  unless Gem::Requirement.new(BLOCKCHAIN_VERSION_REQUIREMENT)
                         .satisfied_by?(Gem::Version.new(Peatio::Blockchain::VERSION))
    [
      "CounosX blockchain version requiremnt was not suttisfied by Peatio::Blockchain.",
      "CounosX blockchain requires #{BLOCKCHAIN_VERSION_REQUIREMENT}.",
      "Peatio::Blockchain version is #{Peatio::Blockchain::VERSION}"
    ].join('\n').tap { |s| Kernel.abort s }
  end

  unless Gem::Requirement.new(WALLET_VERSION_REQUIREMENT)
                         .satisfied_by?(Gem::Version.new(Peatio::Wallet::VERSION))
    [
      "CounosX wallet version requiremnt was not suttisfied by Peatio::Wallet.",
      "CounosX wallet requires #{WALLET_VERSION_REQUIREMENT}.",
      "Peatio::Wallet version is #{Peatio::Wallet::VERSION}"
    ].join('\n').tap { |s| Kernel.abort s }
  end
end

.registerObject



28
29
30
31
# File 'lib/peatio/counosx/hooks.rb', line 28

def register
  Peatio::Blockchain.registry[:counosx] = CounosX::Blockchain
  Peatio::Wallet.registry[:counosxd] = CounosX::Wallet
end