Sha256: c117ec57691674883e1e9fa9f084bf87a7447d3664c4342d6f725e91bd02e5a0
Contents?: true
Size: 1.34 KB
Versions: 1
Compression:
Stored size: 1.34 KB
Contents
module Boson class Runner class<<self def init View.enable add_load_path Manager.load default_libraries, load_options end def add_load_path Boson.repos.each {|repo| if repo.config[:add_load_path] || File.exists?(File.join(repo.dir, 'lib')) $: << File.join(repo.dir, 'lib') unless $:.include? File.expand_path(File.join(repo.dir, 'lib')) end } end def load_options {:verbose=>@options[:verbose]} end def default_libraries [Boson::Commands::Core, Boson::Commands::WebCore] end def detected_libraries Boson.repos.map {|repo| Dir[File.join(repo.commands_dir, '**/*.rb')]. map {|e| e.gsub(/.*commands\//,'').gsub('.rb','') } }.flatten end def all_libraries (detected_libraries + Boson.repos.map {|e| e.config[:libraries].keys}.flatten).uniq end def define_autoloader class << ::Boson.main_object def method_missing(method, *args, &block) Boson::Index.read if lib = Boson::Index.find_library(method.to_s) Boson::Manager.load lib, :verbose=>true send(method, *args, &block) if respond_to?(method) else super end end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
boson-0.0.1 | lib/boson/runner.rb |