Sha256: 026e8a3f18af12c77264d80336a190f0599ecdbfcec8a63e873afd67a29698e5

Contents?: true

Size: 915 Bytes

Versions: 3

Compression:

Stored size: 915 Bytes

Contents

require 'slop'

module Boot
  LIB_PATH = File.dirname(File.dirname(File.expand_path("../", __FILE__)))
end

module Boot::Lib end

module Boot::Lib::Core
  autoload :Config, File.dirname(__FILE__) + "/Core/Config.rb"
  autoload :InvalidConfigException, File.dirname(__FILE__) + "/Core/InvalidConfigException.rb"
  autoload :InvalidTemplateException, File.dirname(__FILE__) + "/Core/InvalidTemplateException.rb"
  autoload :SubCommand, File.dirname(__FILE__) + "/Core/SubCommand.rb"
  autoload :Template, File.dirname(__FILE__) + "/Core/Template.rb"
end

module Boot::Lib::Commands
  autoload :New, File.dirname(__FILE__) + "/Commands/New.rb"
  autoload :Help, File.dirname(__FILE__) + "/Commands/Help.rb"
  autoload :Config, File.dirname(__FILE__) + "/Commands/Config.rb"
  autoload :Version, File.dirname(__FILE__) + "/Commands/Version.rb"
  autoload :Template, File.dirname(__FILE__) + "/Commands/Template.rb"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
boot-cli-1.0.0 lib/Boot/Lib/autoload.rb
boot-cli-0.3.1 lib/Boot/Lib/autoload.rb
boot-cli-0.3.0 lib/Boot/Lib/autoload.rb