Replace env.output interface with an IO like object

This commit is contained in:
Thibault Jouan
2013-12-23 00:50:25 +00:00
parent e8b0900721
commit d670d5dbdd
6 changed files with 23 additions and 21 deletions

View File

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

View File

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