Module: DatedBackup::Warnings
- Defined in:
- lib/dated_backup/core/warnings.rb
Class Method Summary collapse
Class Method Details
.execute_silently(&blk) ⇒ Object
5 6 7 8 9 10 |
# File 'lib/dated_backup/core/warnings.rb', line 5 def execute_silently(&blk) old_warning_level = $VERBOSE $VERBOSE = nil yield $VERBOSE = old_warning_level end |