2013-07-30 14:47:56 +00:00

12 lines
169 B
Ruby

module Producer
module Core
class Env
attr_reader :current_recipe
def initialize(recipe)
@current_recipe = recipe
end
end
end
end