allowed_push_host()
click to toggle source
def allowed_push_host
@gemspec.metadata["allowed_push_host"] if @gemspec.respond_to?(:metadata)
end
already_tagged?()
click to toggle source
def already_tagged?
return false unless sh("git tag").split(/\n/).include?(version_tag)
Bundler.ui.confirm "Tag #{version_tag} has already been created."
true
end
built_gem_path()
click to toggle source
def built_gem_path
Dir[File.join(base, "#{name}-*.gem")].sort_by {|f| File.mtime(f) }.last
end
clean?()
click to toggle source
def clean?
sh_with_code("git diff --exit-code")[1] == 0
end
committed?()
click to toggle source
def committed?
sh_with_code("git diff-index --quiet --cached HEAD")[1] == 0
end
gem_key()
click to toggle source
def gem_key
Bundler.settings["gem.push_key"].to_s.downcase if Bundler.settings["gem.push_key"]
end
gem_push?()
click to toggle source
def gem_push?
!%w[n no nil false off 0].include?(ENV["gem_push"].to_s.downcase)
end
gem_push_host()
click to toggle source
def gem_push_host
env_rubygems_host = ENV["RUBYGEMS_HOST"]
env_rubygems_host = nil if
env_rubygems_host && env_rubygems_host.empty?
allowed_push_host || env_rubygems_host || "rubygems.org"
end
git_push(remote = "")
click to toggle source
def git_push(remote = "")
perform_git_push remote
perform_git_push "#{remote} --tags"
Bundler.ui.confirm "Pushed git commits and tags."
end
guard_clean()
click to toggle source
def guard_clean
clean? && committed? || raise("There are files that need to be committed first.")
end
name()
click to toggle source
def name
gemspec.name
end
rubygem_push(path)
click to toggle source
def rubygem_push(path)
gem_command = "gem push '#{path}'"
gem_command += " --key #{gem_key}" if gem_key
gem_command += " --host #{allowed_push_host}" if allowed_push_host
unless allowed_push_host || Bundler.user_home.join(".gem/credentials").file?
raise "Your rubygems.org credentials aren't set. Run `gem push` to set them."
end
sh(gem_command)
Bundler.ui.confirm "Pushed #{name} #{version} to #{gem_push_host}"
end
sh(cmd, &block)
click to toggle source
def sh(cmd, &block)
out, code = sh_with_code(cmd, &block)
unless code.zero?
raise(out.empty? ? "Running `#{cmd}` failed. Run this command directly for more detailed output." : out)
end
out
end
sh_with_code(cmd, &block)
click to toggle source
def sh_with_code(cmd, &block)
cmd += " 2>&1"
outbuf = String.new
Bundler.ui.debug(cmd)
SharedHelpers.chdir(base) do
outbuf = `#{cmd}`
status = $?.exitstatus
block.call(outbuf) if status.zero? && block
[outbuf, status]
end
end
tag_version()
click to toggle source
def tag_version
sh "git tag -m \"Version #{version}\" #{version_tag}"
Bundler.ui.confirm "Tagged #{version_tag}."
yield if block_given?
rescue RuntimeError
Bundler.ui.error "Untagging #{version_tag} due to error."
sh_with_code "git tag -d #{version_tag}"
raise
end
version()
click to toggle source
def version
gemspec.version
end
version_tag()
click to toggle source
def version_tag
"v#{version}"
end