# File lib/nautilus/shell.rb, line 9 def build_command(command, options = {}) actual_command = command.kind_of?(Array) ? command.join(" ") : command if options[:background] if windows? actual_command = "start /wait /b " + command elsif options[:background] actual_command << " &" end end actual_command end
# File lib/nautilus/shell.rb, line 5 def run(command, options = {}) sh build_command(command, options) end
Generated with the Darkfish Rdoc Generator 2.