2013-08-01 00:01:19 +00:00

24 lines
465 B
Ruby

module Producer
module Core
class Recipe
RecipeEvaluationError = Class.new(StandardError)
attr_reader :code, :filepath
def self.from_file(filepath)
new(File.read(filepath), filepath)
end
def initialize(code, filepath = nil)
@code = code
@filepath = filepath
end
def evaluate(env)
dsl = DSL.new(@code).evaluate(env)
dsl.tasks.map(&:evaluate)
end
end
end
end