Class: Bundler::GemHelper

Inherits:
Object
  • Object
show all
Includes:
Rake::DSL
Defined in:
lib/bundler/gem_helper.rb

Class Attribute Summary collapse

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(base = nil, name = nil) ⇒ GemHelper

Returns a new instance of GemHelper.



27
28
29
30
31
32
33
# File 'lib/bundler/gem_helper.rb', line 27

def initialize(base = nil, name = nil)
  @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

.instanceObject

set when install’d.



12
13
14
# File 'lib/bundler/gem_helper.rb', line 12

def instance
  @instance
end

Instance Attribute Details

#baseObject (readonly)

Returns the value of attribute base.



25
26
27
# File 'lib/bundler/gem_helper.rb', line 25

def base
  @base
end

#gemspecObject (readonly)

Returns the value of attribute gemspec.



25
26
27
# File 'lib/bundler/gem_helper.rb', line 25

def gemspec
  @gemspec
end

#spec_pathObject (readonly)

Returns the value of attribute spec_path.



25
26
27
# File 'lib/bundler/gem_helper.rb', line 25

def spec_path
  @spec_path
end

Class Method Details

.gemspec(&block) ⇒ Object



18
19
20
21
22
# File 'lib/bundler/gem_helper.rb', line 18

def gemspec(&block)
  gemspec = instance.gemspec
  block.call(gemspec) if block
  gemspec
end

.install_tasks(opts = {}) ⇒ Object



14
15
16
# File 'lib/bundler/gem_helper.rb', line 14

def install_tasks(opts = {})
  new(opts[:dir], opts[:name]).install
end

Instance Method Details

#build_gemObject



74
75
76
77
78
79
80
81
82
83
# File 'lib/bundler/gem_helper.rb', line 74

def build_gem
  file_name = nil
  sh([*gem_command, "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

#installObject



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/bundler/gem_helper.rb', line 35

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) ⇒ Object



85
86
87
88
89
90
91
92
93
94
# File 'lib/bundler/gem_helper.rb', line 85

def install_gem(built_gem_path = nil, local = false)
  built_gem_path ||= build_gem
  cmd = [*gem_command, "install", built_gem_path.to_s]
  cmd << "--local" if local
  _, status = sh_with_status(cmd)
  unless status.success?
    raise "Couldn't install gem, run `gem install #{built_gem_path}' for more detailed output"
  end
  Bundler.ui.confirm "#{name} (#{version}) installed."
end