Implement target recipe keyword feature

This commit is contained in:
Thibault Jouan
2013-08-03 23:41:22 +00:00
parent a6e27edfd2
commit a3bba6d4da
4 changed files with 39 additions and 1 deletions

View File

@@ -1,10 +1,12 @@
module Producer
module Core
class Env
attr_reader :current_recipe
attr_reader :current_recipe
attr_accessor :target
def initialize(recipe)
@current_recipe = recipe
@target = nil
end
end
end