# File 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
# File 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
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please see Improve the docs, or visit Documenting-ruby.org.