Default Vagrant::UI#clear_line to do nothing [closes GH-466]

This needs to be defined as it is used in Vagrant::Action::VM::Import#call
This commit is contained in:
Lewis Marshall 2011-08-13 13:06:20 +01:00 committed by Mitchell Hashimoto
parent cf115c10b1
commit 25dee4ac6d
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ module Vagrant
end
end
[:report_progress, :ask, :no?, :yes?].each do |method|
[:clear_line, :report_progress, :ask, :no?, :yes?].each do |method|
# By default do nothing, these aren't logged
define_method(method) { |*args| }
end