Parent

Methods

Mechanize::HTTP::AuthRealm

Attributes

scheme[R]
uri[R]
realm[R]

Public Class Methods

new(scheme, uri, realm) click to toggle source
    # File lib/mechanize/http/auth_realm.rb, line 7
 7:   def initialize scheme, uri, realm
 8:     @scheme = scheme
 9:     @uri    = uri
10:     @realm  = realm.downcase if realm
11:   end

Public Instance Methods

==(other) click to toggle source
    # File lib/mechanize/http/auth_realm.rb, line 13
13:   def == other
14:     self.class === other and
15:       @scheme == other.scheme and
16:       @uri    == other.uri    and
17:       @realm  == other.realm
18:   end
Also aliased as: eql?
eql?(other) click to toggle source
Alias for: ==

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.