15 lines
262 B
Ruby
15 lines
262 B
Ruby
|
module Vagrant
|
||
|
module Util
|
||
|
module SilenceWarnings
|
||
|
# This silences any Ruby warnings.
|
||
|
def self.silence!
|
||
|
original = $VERBOSE
|
||
|
$VERBOSE = nil
|
||
|
return yield
|
||
|
ensure
|
||
|
$VERBOSE = original
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|