module CrackLib

Constants

VERSION

Public Class Methods

Fascist(pw, dict_path = default_dict) click to toggle source

Checks the password pw using the cracklib dictionary at dict_path, and returns a CrackLib::Fascist object with the result.

# File lib/cracklib.rb, line 33
def self.Fascist(pw, dict_path = default_dict)
  Fascist.new(pw, dict_path)
end