Sha256: 436c92407dcbb1c391997d584c3b5ce66f736fbec5896e384b7fd276be4a9575
Contents?: true
Size: 382 Bytes
Versions: 3
Compression:
Stored size: 382 Bytes
Contents
class Jeweler module Commands class InstallGem attr_accessor :gemspec_helper, :output def initialize self.output = $stdout end 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 end end end
Version data entries
3 entries across 3 versions & 2 rubygems