Sha256: e7f17287a912450bb0f37d8ce068872113929d69d379108d6ffb54c51fbf1f60
Contents?: true
Size: 651 Bytes
Versions: 15
Compression:
Stored size: 651 Bytes
Contents
class Jeweler module Commands class ReleaseToGemcutter attr_accessor :gemspec, :version, :output, :gemspec_helper def initialize self.output = $stdout end def run command = "gem push #{@gemspec_helper.gem_path}" output.puts "Executing #{command.inspect}:" sh command end def self.build_for(jeweler) command = new command.gemspec = jeweler.gemspec command.gemspec_helper = jeweler.gemspec_helper command.version = jeweler.version command.output = jeweler.output command end end end end
Version data entries
15 entries across 15 versions & 3 rubygems