Sha256: f52c7309c6c18fdd9fff16da6954e888422fc00096ecaa097110724ba254539d
Contents?: true
Size: 655 Bytes
Versions: 1
Compression:
Stored size: 655 Bytes
Contents
require 'rubygems' module Reflection autoload :CLI, 'reflection/cli' autoload :Config, 'reflection/config' autoload :Command, 'reflection/command' autoload :Directory, 'reflection/directory' autoload :Repository, 'reflection/repository' autoload :Support, 'reflection/support' autoload :Validations, 'reflection/validations' class << self attr_accessor :home attr_accessor :log def boot!(args) @log = Reflection::Support::Log.new @home = Reflection::Support::Home.new @home.create Reflection::CLI.run!(args) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
reflection-0.3.1 | lib/reflection.rb |