Implement verbose mode

This commit is contained in:
Thibault Jouan
2014-05-19 22:22:42 +00:00
parent 2b86bbf112
commit 8291f1bcfd
16 changed files with 183 additions and 20 deletions

View File

@@ -2,6 +2,10 @@ module Producer
module Core
module Actions
class Echo < Action
def name
'echo'
end
def apply
output.puts arguments.first
end