Method: Applb::DSL.define

Defined in:
lib/applb/dsl.rb

.define(source, filepath, options) ⇒ Object



10
11
12
13
14
# File 'lib/applb/dsl.rb', line 10

def define(source, filepath, options)
  self.new(filepath, options) do
    eval(source, binding, filepath)
  end
end