module Alki

Constants

InvalidPathError
OverlayInfo
Overrides
VERSION

Public Class Methods

create_assembly(opts={},&blk) click to toggle source
# File lib/alki.rb, line 13
def create_assembly(opts={},&blk)
  Alki::Assembly::Builder.build(opts,&blk)
end
new(opts={},&blk) click to toggle source
# File lib/alki.rb, line 17
def new(opts={},&blk)
  Alki.create_assembly(opts,&blk).new
end
Also aliased as: singleton_assembly
project_assembly!(opts={},&blk) click to toggle source
# File lib/alki.rb, line 7
def project_assembly!(opts={},&blk)
  opts[:project_assembly] ||= caller_locations(1,1)[0].absolute_path
  opts[:load_mode] = :require
  Alki::Assembly::Builder.build(opts,&blk)
end
singleton_assembly(opts={},&blk)
Alias for: new