class Object

Public Instance Methods

supress_warnings() { || ... } click to toggle source
# File lib/javascript.rb, line 4
def supress_warnings
  verbose, $VERBOSE = $VERBOSE, nil
  yield
ensure
  $VERBOSE = verbose
end