mirror of
https://github.com/github/rails.git
synced 2026-01-31 01:08:19 -05:00
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@28 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
7 lines
123 B
Ruby
7 lines
123 B
Ruby
def silence_warnings
|
|
old_verbose, $VERBOSE = $VERBOSE, nil
|
|
result = yield
|
|
$VERBOSE = old_verbose
|
|
return result
|
|
end
|