From 25dee4ac6dac39e12b8651d825ff58e69bfe7776 Mon Sep 17 00:00:00 2001 From: Lewis Marshall Date: Sat, 13 Aug 2011 13:06:20 +0100 Subject: [PATCH] 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 --- lib/vagrant/ui.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/ui.rb b/lib/vagrant/ui.rb index 7d0a932a8..9b27cdc7d 100644 --- a/lib/vagrant/ui.rb +++ b/lib/vagrant/ui.rb @@ -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