Parent

Methods

Puma::MiniSSL::Context

Attributes

cert[R]
key[R]
verify_mode[RW]

Public Instance Methods

cert=(cert) click to toggle source
# File lib/puma/minissl.rb, line 102
def cert=(cert)
  raise ArgumentError, "No such cert file '#{cert}'" unless File.exist? cert
  @cert = cert
end
key=(key) click to toggle source
# File lib/puma/minissl.rb, line 97
def key=(key)
  raise ArgumentError, "No such key file '#{key}'" unless File.exist? key
  @key = key
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.