10 lines
245 B
Ruby
10 lines
245 B
Ruby
module Vagrant
|
|
module Util
|
|
def wrap_output
|
|
puts "====================================================================="
|
|
yield
|
|
puts "====================================================================="
|
|
end
|
|
end
|
|
end
|