Not found
The exact documentation you were looking for could not be found. Here is the best guess.
new(path)
public
Open a password database at path
Show source
def initialize(path)
@path = path
@mtime = Time.at(0)
@passwd = Hash.new
@auth_type = BasicAuth
open(@path,"a").close unless File::exist?(@path)
reload
end