Sha256: 9b4e54fe51e8f26279085a0442c7c14b392badfa297fd3f5242946829508c801
Contents?: true
Size: 1.73 KB
Versions: 10
Compression:
Stored size: 1.73 KB
Contents
class Jeweler module Commands class ReleaseToGit attr_accessor :gemspec, :version, :repo, :output, :gemspec_helper, :base_dir def initialize(attributes = {}) self.output = $stdout attributes.each_pair do |key, value| send("#{key}=", value) end end def run(args = {}) remote = args[:remote] || 'origin' branch = args[:branch] || 'master' local_branch = args[:local_branch] || branch remote_branch = args[:remote_branch] || branch unless clean_staging_area? system 'git status' raise 'Unclean staging area! Be sure to commit or .gitignore everything first. See `git status` above.' end repo.checkout(local_branch) repo.push(remote, "#{local_branch}:#{remote_branch}") if release_not_tagged? output.puts "Tagging #{release_tag}" repo.add_tag(release_tag) output.puts "Pushing #{release_tag} to #{remote}" repo.push(remote, release_tag) end end def clean_staging_area? `git ls-files --deleted --modified --others --exclude-standard` == '' end def release_tag "v#{version}" end def release_not_tagged? tag = begin repo.tag(release_tag) rescue nil end tag.nil? end def self.build_for(jeweler) command = new command.base_dir = jeweler.base_dir command.gemspec = jeweler.gemspec command.version = jeweler.version command.repo = jeweler.repo command.output = jeweler.output command.gemspec_helper = jeweler.gemspec_helper command end end end end
Version data entries
10 entries across 10 versions & 1 rubygems