Add Env class

This commit is contained in:
Thibault Jouan
2013-07-29 21:07:58 +00:00
parent 30e1930719
commit d199ba56fd
7 changed files with 50 additions and 11 deletions

11
lib/producer/core/env.rb Normal file
View File

@@ -0,0 +1,11 @@
module Producer
module Core
class Env
attr_reader :current_recipe
def initialize(recipe)
@current_recipe = recipe
end
end
end
end