Module WEBrick::HTTPAuth::UserDB
In: webrick/httpauth/userdb.rb

Methods

Attributes

auth_type  [RW] 

Public Instance methods

[Source]

# File webrick/httpauth/userdb.rb, line 23
      def get_passwd(realm, user, reload_db=false)
        # reload_db is dummy
        make_passwd(realm, user, self[user])
      end

[Source]

# File webrick/httpauth/userdb.rb, line 15
      def make_passwd(realm, user, pass)
        @auth_type::make_passwd(realm, user, pass)
      end

[Source]

# File webrick/httpauth/userdb.rb, line 19
      def set_passwd(realm, user, pass)
        self[user] = pass
      end

[Validate]

ruby-doc.org is hosted and run by James Britt and Happy Camper Studios, a Ruby application development company in Phoenix, Arizona. Ruby-doc.org was created in 2002 to promote the Ruby language and to help other Ruby hackers.

Documentation content on ruby-doc.org is provided by remarkable members of the Ruby community.

For more information on the Ruby programming language, visit ruby-lang.org.

Want to help improve Ruby's API docs? See Ruby Documentation Guidelines.