DEBSOURCES
Skip Quicknav
sources / ruby-bogus / 0.1.5-3 / lib / bogus / support.rb
1234567891011
module Bogus module Support def self.supress_warnings old_verbose = $VERBOSE $VERBOSE = nil yield ensure $VERBOSE = old_verbose end end end