Method: FileOperations#command

Defined in:
lib/vendor/xmpp4r/setup.rb

#command(*args) ⇒ Object



654
655
656
657
658
# File 'lib/vendor/xmpp4r/setup.rb', line 654

def command(*args)
  $stderr.puts args.join(' ') if verbose?
  system(*args) or raise RuntimeError,
      "system(#{args.map{|a| a.inspect }.join(' ')}) failed"
end