Implement Action#output (delegates to env.output)

This commit is contained in:
Thibault Jouan
2014-01-08 22:43:52 +00:00
parent 103b9d1230
commit e567c61e4e
5 changed files with 15 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ module Producer
module Actions
class Echo < Action
def apply
env.output.puts arguments.first
output.puts arguments.first
end
end
end

View File

@@ -3,7 +3,7 @@ module Producer
module Actions
class ShellCommand < Action
def apply
env.output.puts env.remote.execute(arguments.first)
output.puts env.remote.execute(arguments.first)
end
end
end