Flowdock
method

run

Importance_0
v1_9_3_392 - Show latest stable - 0 notes - Class: Builder
run(command, results) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rubygems/ext/builder.rb, line 46
  def self.run(command, results)
    results << command
    results << `#{command} #{redirector}`

    unless $?.success? then
      raise Gem::InstallError, "#{class_name} failed:\n\n#{results.join "\n"}"
    end
  end
Register or log in to add new notes.