Parent

Class Index [+]

Quicksearch

Gem::Commands::BuildCommand

Public Class Methods

new() click to toggle source

(Not documented)

# File lib/rubygems/commands/build_command.rb, line 6
  def initialize
    super('build', 'Build a gem from a gemspec')
  end

Public Instance Methods

execute() click to toggle source

(Not documented)

# File lib/rubygems/commands/build_command.rb, line 18
  def execute
    gemspec = get_one_gem_name
    if File.exist?(gemspec)
      specs = load_gemspecs(gemspec)
      specs.each do |spec|
        Gem::Builder.new(spec).build
      end
    else
      alert_error "Gemspec file not found: #{gemspec}"
    end
  end
load_gemspecs(filename) click to toggle source

(Not documented)

# File lib/rubygems/commands/build_command.rb, line 30
  def load_gemspecs(filename)
    if yaml?(filename)
      result = []
      open(filename) do |f|
        begin
          while not f.eof? and spec = Gem::Specification.from_yaml(f)
            result << spec
          end
        rescue Gem::EndOfYAMLException => e
          # OK
        end
      end
    else
      result = [Gem::Specification.load(filename)]
    end
    result
  end
yaml?(filename) click to toggle source

(Not documented)

# File lib/rubygems/commands/build_command.rb, line 48
  def yaml?(filename)
    line = open(filename) { |f| line = f.gets }
    result = line =~ %r{!ruby/object:Gem::Specification}
    result
  end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.