Method: Sys#quiet

Defined in:
lib/carat-dev/misc/sys.rb

#quiet(&block) ⇒ Object

Perform a block with $verbose disabled.



146
147
148
# File 'lib/carat-dev/misc/sys.rb', line 146

def quiet(&block)
  with_verbose(false, &block)
end