module BlockchainNode

Constants

MAJOR
MINOR
PATCH
VERSION

Public Class Methods

config() click to toggle source
# File lib/blockchain-node.rb, line 17
def self.config
  config = {}
  Configuration::ATTRIBUTES.each do |attribute|
    config[attribute] = BlockchainNode::Configuration.send(attribute)
  end
  config
end
configure() { |Configuration| ... } click to toggle source
# File lib/blockchain-node.rb, line 13
def self.configure
  yield Configuration if block_given?
end