Files
producer-core/lib/producer/core/env.rb
Thibault Jouan d199ba56fd Add Env class
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