module Daedalus
Constants
- VERSION
Public Class Methods
blueprint() { |b| ... }
click to toggle source
# File lib/daedalus.rb 1086 def self.blueprint 1087 b = Blueprint.new 1088 yield b 1089 b 1090 end
load(file)
click to toggle source
# File lib/daedalus.rb 1092 def self.load(file) 1093 eval File.read(file) 1094 end