Sha256: 6a7276c30dafb8941025e0c79efe92fc2f66d813efb38101c2ee40b2529310e7
Contents?: true
Size: 1.4 KB
Versions: 17
Compression:
Stored size: 1.4 KB
Contents
# load_path settings def append_load_path_if_not_exist(new_lib_path) absolute_path = File.realpath(new_lib_path) $LOAD_PATH.unshift absolute_path unless $LOAD_PATH.include? absolute_path end flydata_top_dir = File.realpath('../../', __FILE__) flydata_core_dir = File.join(flydata_top_dir, 'flydata-core') flydata_core_lib_dir = File.realpath('lib', flydata_core_dir) append_load_path_if_not_exist(flydata_core_lib_dir) # require common libs require 'active_support/core_ext/string' require 'active_support/dependencies' require 'active_support/time' require 'highline/import' require 'readline' require 'json' require 'pp' # require all flydata libs lib_dir = File.absolute_path(File.dirname(__FILE__)) ActiveSupport::Dependencies.autoload_paths << lib_dir module Flydata FLYDATA_DEBUG = !!(ENV['FLYDATA_DEBUG']) FLYDATA_HOME = ENV['FLYDATA_HOME'] || "#{ENV['HOME']}/.flydata" FLYDATA_GEM_HOME = File.expand_path(File.join(File.dirname(__FILE__), '..')) FLYDATA_GEM_BIN = File.join(FLYDATA_GEM_HOME, 'bin') FLYDATA_TMPL_DIR = File.join(FLYDATA_GEM_HOME, 'tmpl') FLYDATA_FLUENT_PLUGIN_DIR = File.join(FLYDATA_GEM_HOME, 'lib', 'flydata', 'fluent-plugins') FLYDATA_SERVERINFO = File.join(FLYDATA_GEM_BIN, 'serverinfo') FLYDATA_LOG = File.join(FLYDATA_HOME, 'flydata.log') FLYDATA_CONF = File.join(FLYDATA_HOME, 'flydata.conf') VERSION_PATH = File.join(FLYDATA_GEM_HOME, 'VERSION') include Flydata::Heroku end
Version data entries
17 entries across 17 versions & 1 rubygems