Class: Bundler::GemHelper
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Instance Chain:
self,
Rake::DSL,
Rake::DSL
|
|
Inherits: | Object |
Defined in: | lib/bundler/gem_helper.rb |
Class Attribute Summary
-
.instance
rw
set when install’d.
Class Method Summary
Instance Attribute Summary
- #base readonly
- #gemspec readonly
- #spec_path readonly
- #already_tagged? ⇒ Boolean readonly protected
- #clean? ⇒ Boolean readonly protected
- #committed? ⇒ Boolean readonly protected
- #gem_push? ⇒ Boolean readonly protected
Instance Method Summary
- #build_gem
- #install
- #install_gem(built_gem_path = nil, local = false)
- #allowed_push_host protected
- #built_gem_path protected
- #gem_key protected
- #gem_push_host protected
- #git_push(remote = "") protected
- #guard_clean protected
- #name protected
- #perform_git_push(options = "") protected
- #rubygem_push(path) protected
- #sh(cmd, &block) protected
- #sh_with_code(cmd, &block) protected
- #tag_version protected
- #version protected
- #version_tag protected
Constructor Details
.new(base = nil, name = nil) ⇒ GemHelper
# File 'lib/bundler/gem_helper.rb', line 27
def initialize(base = nil, name = nil) Bundler.ui = UI::Shell.new @base = (base ||= SharedHelpers.pwd) gemspecs = name ? [File.join(base, "#{name}.gemspec")] : Dir[File.join(base, "{,*}.gemspec")] raise "Unable to determine name from existing gemspec. Use :name => 'gemname' in #install_tasks to manually set it." unless gemspecs.size == 1 @spec_path = gemspecs.first @gemspec = Bundler.load_gemspec(@spec_path) end
Class Attribute Details
.instance (rw)
set when install’d.
# File 'lib/bundler/gem_helper.rb', line 12
attr_accessor :instance
Class Method Details
.gemspec(&block)
[ GitHub ]# File 'lib/bundler/gem_helper.rb', line 18
def gemspec(&block) gemspec = instance.gemspec block.call(gemspec) if block gemspec end
.install_tasks(opts = {})
[ GitHub ]Instance Attribute Details
#already_tagged? ⇒ Boolean
(readonly, protected)
[ GitHub ]
# File 'lib/bundler/gem_helper.rb', line 134
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
#base (readonly)
[ GitHub ]
#clean? ⇒ Boolean
(readonly, protected)
[ GitHub ]
# File 'lib/bundler/gem_helper.rb', line 144
def clean? sh_with_code("git diff --exit-code")[1] == 0 end
#committed? ⇒ Boolean
(readonly, protected)
[ GitHub ]
# File 'lib/bundler/gem_helper.rb', line 148
def committed? sh_with_code("git diff-index --quiet --cached HEAD")[1] == 0 end
#gem_push? ⇒ Boolean
(readonly, protected)
[ GitHub ]
# File 'lib/bundler/gem_helper.rb', line 198
def gem_push? !%w[n no nil false off 0].include?(ENV["gem_push"].to_s.downcase) end
#gemspec (readonly)
[ GitHub ]#spec_path (readonly)
[ GitHub ]Instance Method Details
#allowed_push_host (protected)
[ GitHub ]# File 'lib/bundler/gem_helper.rb', line 116
def allowed_push_host @gemspec. ["allowed_push_host"] if @gemspec.respond_to?(: ) end
#build_gem
[ GitHub ]# File 'lib/bundler/gem_helper.rb', line 75
def build_gem file_name = nil sh("gem build -V '#{spec_path}'") do file_name = File.basename(built_gem_path) SharedHelpers.filesystem_access(File.join(base, "pkg")) {|p| FileUtils.mkdir_p(p) } FileUtils.mv(built_gem_path, "pkg") Bundler.ui.confirm "#{name} #{version} built to pkg/#{file_name}." end File.join(base, "pkg", file_name) end
#built_gem_path (protected)
[ GitHub ]#gem_key (protected)
[ GitHub ]#gem_push_host (protected)
[ GitHub ]# File 'lib/bundler/gem_helper.rb', line 120
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 = "") (protected)
[ GitHub ]# File 'lib/bundler/gem_helper.rb', line 110
def git_push(remote = "") perform_git_push remote perform_git_push "#{remote} --tags" Bundler.ui.confirm "Pushed git commits and tags." end
#guard_clean (protected)
[ GitHub ]# File 'lib/bundler/gem_helper.rb', line 140
def guard_clean clean? && committed? || raise("There are files that need to be committed first.") end
#install
[ GitHub ]# File 'lib/bundler/gem_helper.rb', line 36
def install built_gem_path = nil desc "Build #{name}-#{version}.gem into the pkg directory." task "build" do built_gem_path = build_gem end desc "Build and install #{name}-#{version}.gem into system gems." task "install" => "build" do install_gem(built_gem_path) end desc "Build and install #{name}-#{version}.gem into system gems without network access." task "install:local" => "build" do install_gem(built_gem_path, :local) end desc "Create tag #{version_tag} and build and push #{name}-#{version}.gem to #{gem_push_host}\n" \ "To prevent publishing in RubyGems use `gem_push=no rake release`" task "release", [:remote] => ["build", "release:guard_clean", "release:source_control_push", "release:rubygem_push"] do end task "release:guard_clean" do guard_clean end task "release:source_control_push", [:remote] do |_, args| tag_version { git_push(args[:remote]) } unless already_tagged? end task "release:rubygem_push" do rubygem_push(built_gem_path) if gem_push? end GemHelper.instance = self end
#install_gem(built_gem_path = nil, local = false)
[ GitHub ]# File 'lib/bundler/gem_helper.rb', line 86
def install_gem(built_gem_path = nil, local = false) built_gem_path ||= build_gem out, _ = sh_with_code("gem install '#{built_gem_path}'#{" --local" if local}") raise "Couldn't install gem, run `gem install #{built_gem_path}' for more detailed output" unless out[/Successfully installed/] Bundler.ui.confirm "#{name} (#{version}) installed." end
#name (protected)
[ GitHub ]# File 'lib/bundler/gem_helper.rb', line 170
def name gemspec.name end
#perform_git_push(options = "") (protected)
[ GitHub ]# File 'lib/bundler/gem_helper.rb', line 128
def perform_git_push( = "") cmd = "git push #{}" out, code = sh_with_code(cmd) raise "Couldn't git push. `#{cmd}' failed with the following output:\n\n#{out}\n" unless code == 0 end
#rubygem_push(path) (protected)
[ GitHub ]# File 'lib/bundler/gem_helper.rb', line 95
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) (protected)
[ GitHub ]# File 'lib/bundler/gem_helper.rb', line 174
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) (protected)
[ GitHub ]#tag_version (protected)
[ GitHub ]# File 'lib/bundler/gem_helper.rb', line 152
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 (protected)
[ GitHub ]# File 'lib/bundler/gem_helper.rb', line 162
def version gemspec.version end
#version_tag (protected)
[ GitHub ]# File 'lib/bundler/gem_helper.rb', line 166
def version_tag "v#{version}" end