aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/vendor/thor-0.11.3/lib/thor/tasks/install.rb
blob: 6b20ff16342e81221c2529fcd5f3934fce97877f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
class Thor
  # Creates an install task.
  #
  # ==== Parameters
  # spec<Gem::Specification>
  #
  # ==== Options
  # :dir - The directory where the package is hold before installation. Defaults to ./pkg.
  #
  def self.install_task(spec, options={})
    package_task(spec, options)
    tasks['install'] = Thor::InstallTask.new(spec, options)
  end

  class InstallTask < Task
    attr_accessor :spec, :config

    def initialize(gemspec, config={})
      super(:install, "Install the gem", "install", {})
      @spec   = gemspec
      @config = { :dir => File.join(Dir.pwd, "pkg") }.merge(config)
    end

    def run(instance, args=[])
      null, sudo, gem = RUBY_PLATFORM =~ /mswin|mingw/ ? ['NUL', '', 'gem.bat'] :
                                                         ['/dev/null', 'sudo', 'gem']

      old_stderr, $stderr = $stderr.dup, File.open(null, "w")
      instance.invoke(:package)
      $stderr = old_stderr

      system %{#{sudo} #{Gem.ruby} -S #{gem} install #{config[:dir]}/#{spec.name}-#{spec.version} --no-rdoc --no-ri --no-update-sources}
    end
  end
end