carlosbrando (owner)

Revisions

gist: 24491 Download_button fork
public
Description:
Silent method
Public Clone URL: git://gist.github.com/24491.git
Embed All Files: show embed
Text #
1
2
3
4
5
6
def silent(command)
  system "#{command} &> /dev/null"
end
 
silent "git add ."