class Jeweler::Commands::InstallGem

def run

def run
  command = "sudo gem install #{gemspec_helper.gem_path}"
  output.puts "Executing #{command.inspect}:"
  sh command # TODO where does sh actually come from!?
end