lib/opsicle/output.rb in opsicle-0.10.0 vs lib/opsicle/output.rb in opsicle-0.11.0

- old
+ new

@@ -28,10 +28,10 @@ def self.say_verbose(msg) terminal.say "<%= color('#{msg}', 'verbose') %>" if $verbose end - def self.ask(*args) - terminal.ask(*args) + def self.ask(*args, &block) + terminal.ask(*args, &block) end end end