Sha256: 143eaa60fc75d76aa2d9bdfd2613eba623054310f27e6f527ce62b97ca9247ec

Contents?: true

Size: 517 Bytes

Versions: 4

Compression:

Stored size: 517 Bytes

Contents

$LOAD_PATH.unshift File.dirname(__FILE__)

def require_all(path)
  glob = File.join(File.dirname(__FILE__), path, '*.rb')
  Dir[glob].each do |f|
    require f
  end
end

require 'rubygems'
require 'colorator'
require 'highline/import'

module Genebrand
  require 'genebrand/command'
  require_all 'genebrand/commands'

  autoload :PosParser, 'genebrand/posparser'
  autoload :VERSION, 'genebrand/version'
  autoload :Logger, 'genebrand/logger'
  autoload :Generator, 'genebrand/generator'

  class << self
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
genebrand-0.2.1 lib/genebrand.rb
genebrand-0.2.0 lib/genebrand.rb
genebrand-0.1.1 lib/genebrand.rb
genebrand-0.1.0 lib/genebrand.rb