Sha256: 9cd374becca7c57347e5f3bd46686881ae72914fe6f2bd9c7212e8c5386de3b4
Contents?: true
Size: 674 Bytes
Versions: 5
Compression:
Stored size: 674 Bytes
Contents
require 'libis/format/version' module Libis module Format autoload :Config, 'libis/format/config' autoload :Info, 'libis/format/info' autoload :Library, 'libis/format/library' autoload :YamlLoader, 'libis/format/yaml_loader' autoload :Identifier, 'libis/format/identifier' autoload :Tool, 'libis/format/tool' autoload :Converter, 'libis/format/converter' ROOT_DIR = File.absolute_path(File.join(File.dirname(__FILE__), '..', '..')) DATA_DIR = File.join(ROOT_DIR, 'data') TOOL_DIR = File.join(ROOT_DIR, 'tools') end end class Object def blank? respond_to?(:empty?) ? !!empty? : !self end unless defined? :blank? end
Version data entries
5 entries across 5 versions & 1 rubygems