Skip to content

Instantly share code, notes, and snippets.

@ForeverZer0
Created July 9, 2018 08:38
Show Gist options
  • Save ForeverZer0/7dfa138296152cd8d4c5c1925acaf7c6 to your computer and use it in GitHub Desktop.
Save ForeverZer0/7dfa138296152cd8d4c5c1925acaf7c6 to your computer and use it in GitHub Desktop.
module Kernel
def suppress_warning
return unless block_given?
verbosity = $VERBOSE
$VERBOSE = nil
yield
$VERBOSE = verbosity
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment