Top Level Namespace

Defined Under Namespace

Modules: Hurley

Instance Method Summary collapse

Instance Method Details

#without_verboseObject



106
107
108
109
110
111
# File 'lib/hurley/tasks.rb', line 106

def without_verbose
  old_verbose, $VERBOSE = $VERBOSE, nil
  yield
ensure
  $VERBOSE = old_verbose
end