vaguerent/lib/vagrant/util/output_helper.rb

10 lines
245 B
Ruby

module Vagrant
module Util
def wrap_output
puts "====================================================================="
yield
puts "====================================================================="
end
end
end