method

build

Importance_0
v2_6_3 - Show latest stable - 0 notes - Class: Package
build(spec, skip_validation = false, strict_validation = false, file_name = nil) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rubygems/package.rb, line 121
  def self.build(spec, skip_validation = false, strict_validation = false, file_name = nil)
    gem_file = file_name || spec.file_name

    package = new gem_file
    package.spec = spec
    package.build skip_validation, strict_validation

    gem_file
  end
Register or log in to add new notes.