$: << File.expand_path(File.dirname(__FILE__)) module Onering module Client VERSION = "0.4.0" class Error < Exception; end class FatalError < Error; end end end require 'onering/logger' if not ENV['ONERING_LOGLEVEL'].nil? Onering::Logger.setup({ :destination => 'stderr', :threshold => ENV['ONERING_LOGLEVEL'] }) end require 'onering/util' require 'onering/api' require 'onering/cli' # require plugins Dir[File.join(File.expand_path(File.dirname(__FILE__)),"onering","plugins","*.rb")].each do |i| require i end # require cli submodules Dir[File.join(File.expand_path(File.dirname(__FILE__)),"onering","cli","*.rb")].each do |i| require i end # you've loaded the library, now load the config Onering::Config.load()