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

@@ -11,6 +11,14 @@ module Producer
@env = env
@arguments = args
end
def name
self.class.name.split('::').last.downcase
end
def to_s
name
end
end
end
end