Sha256: e9a8471a717a736de69b5dbf6e254fffc5ae1064eda6b6bfcdf981a0621784c3
Contents?: true
Size: 668 Bytes
Versions: 65
Compression:
Stored size: 668 Bytes
Contents
class Jeweler module Commands class ReleaseToRubygems include FileUtils 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
65 entries across 65 versions & 6 rubygems