module IbRubyProxy


File generated automatically by ib_ruby_proxy



File generated automatically by ib_ruby_proxy



File generated automatically by ib_ruby_proxy



File generated automatically by ib_ruby_proxy



File generated automatically by ib_ruby_proxy



File generated automatically by ib_ruby_proxy



File generated automatically by ib_ruby_proxy



File generated automatically by ib_ruby_proxy



File generated automatically by ib_ruby_proxy



File generated automatically by ib_ruby_proxy



File generated automatically by ib_ruby_proxy


Constants

LOGGER_LEVEL
VERSION

Public Class Methods

config() click to toggle source

Configuration options parsed from ib_ruby_proxy/config.yml

@return [Hash]

# File lib/ib_ruby_proxy.rb, line 26
def self.config
  @config ||= begin
    file_path = File.join(__dir__, 'ib_ruby_proxy/config.yml')
    YAML.load_file(file_path)
  end
end
logger() click to toggle source

Gem logger

@return [Logger]

# File lib/ib_ruby_proxy.rb, line 17
def self.logger
  @logger ||= Logger.new(STDOUT).tap do |logger|
    logger.level = LOGGER_LEVEL
  end
end