Sha256: eceff2d8477aa14066fa1eec60d1f8e3d06ee67cbf5d4bcc2e33330d14c070d4
Contents?: true
Size: 731 Bytes
Versions: 4
Compression:
Stored size: 731 Bytes
Contents
require 'rubygems' module Reflection autoload :CLI, 'reflection/cli' autoload :Config, 'reflection/config' autoload :Command, 'reflection/command' autoload :Directory, 'reflection/directory' autoload :Rails, 'reflection/rails' autoload :Repository, 'reflection/repository' autoload :Support, 'reflection/support' autoload :Validations, 'reflection/validations' class << self attr_accessor :home attr_accessor :log attr_accessor :verbose 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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
reflection-0.4.6 | lib/reflection.rb |
reflection-0.4.5 | lib/reflection.rb |
reflection-0.4.4 | lib/reflection.rb |
reflection-0.4.3 | lib/reflection.rb |