method

build

build(name)
public

No documentation available.

# File lib/rubygems/commands/cert_command.rb, line 114
  def build name
    key, key_path = build_key
    cert_path = build_cert name, key

    say "Certificate: #{cert_path}"

    if key_path
      say "Private Key: #{key_path}"
      say "Don't forget to move the key file to somewhere private!"
    end
  end