Sha256: 8e8d16baf705988e5dbd1c334fed068457fb1ad9743a4986e8c769bed68a6359
Contents?: true
Size: 561 Bytes
Versions: 19
Compression:
Stored size: 561 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 def self.build_for(jeweler) command = new command.output = jeweler.output command.gemspec_helper = jeweler.gemspec_helper command end end end end
Version data entries
19 entries across 19 versions & 6 rubygems