Sha256: 2dd503a756a02a207971d83374d89d209aa1990ddf168e7037c513c2ec1b3497

Contents?: true

Size: 1.91 KB

Versions: 2

Compression:

Stored size: 1.91 KB

Contents

# rubocop:disable Naming/FileName
# rubocop:enable Naming/FileName
# frozen_string_literal: true

require 'active_support'
require 'active_support/core_ext/time'
require 'active_support/core_ext/numeric'
require 'parallel'
require 'csv'
require 'yaml'
require 'json'

require_relative 'cotcube-helpers/array_ext'
require_relative 'cotcube-helpers/enum_ext'
require_relative 'cotcube-helpers/hash_ext'
require_relative 'cotcube-helpers/range_ext'
require_relative 'cotcube-helpers/string_ext'
require_relative 'cotcube-helpers/datetime_ext'
require_relative 'cotcube-helpers/numeric_ext'
require_relative 'cotcube-helpers/subpattern'
require_relative 'cotcube-helpers/parallelize'
require_relative 'cotcube-helpers/simple_output'
require_relative 'cotcube-helpers/simple_series_stats'
require_relative 'cotcube-helpers/deep_decode_datetime'
require_relative 'cotcube-helpers/constants'
require_relative 'cotcube-helpers/input'
require_relative 'cotcube-helpers/output'
require_relative 'cotcube-helpers/reduce'
require_relative 'cotcube-helpers/symbols'
require_relative 'cotcube-helpers/init'
require_relative 'cotcube-helpers/get_id_set'
require_relative 'cotcube-helpers/ib_contracts'
require_relative 'cotcube-helpers/recognition'

module Cotcube
  module Helpers
    module_function :sub,
                    :parallelize,
                    :config_path,
                    :config_prefix,
                    :reduce,
                    :simple_series_stats,
                    :keystroke,
                    :symbols,
                    :micros,
                    :get_id_set,
                    :get_ib_contract,
                    :update_ib_contracts,
                    :translate_ib_contract,
                    :init

    # please not that module_functions of source provided in private files must be published there
  end
end

%w[ data cache order josch ].each do |part| 
  require_relative "cotcube-helpers/#{part}_client"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cotcube-helpers-0.2.4 lib/cotcube-helpers.rb
cotcube-helpers-0.2.3 lib/cotcube-helpers.rb