public
Description: A more memorable password generator.
Homepage: http://stephencelis.com/2009/03/29/whats-the-password-haddock.html
Clone URL: git://github.com/stephencelis/haddock.git
name age message
file .autotest Sat Mar 28 14:01:32 -0700 2009 Birthday! [stephencelis]
file .gitignore Sun Nov 29 20:04:07 -0800 2009 Include extra RDoc files. Update gitignore. [stephencelis]
file History.rdoc Thu May 14 18:13:07 -0700 2009 Bump gemspec. Update doc formatting. [stephencelis]
file Manifest.txt Thu May 14 18:13:07 -0700 2009 Bump gemspec. Update doc formatting. [stephencelis]
file README.rdoc Sun Nov 29 20:04:07 -0800 2009 Include extra RDoc files. Update gitignore. [stephencelis]
file Rakefile Tue Dec 08 06:33:54 -0800 2009 Remove dependency on hoe. [stephencelis]
directory bin/ Thu May 14 17:59:41 -0700 2009 Ruby 1.9 compatibility [closes #1]. [stephencelis]
file haddock.gemspec Tue Dec 08 06:33:54 -0800 2009 Remove dependency on hoe. [stephencelis]
directory lib/ Thu May 14 18:13:07 -0700 2009 Bump gemspec. Update doc formatting. [stephencelis]
directory test/ Sun Mar 29 07:37:57 -0700 2009 Friendlier command-line errors. General cleanup. [stephencelis]
README.rdoc

haddock

github.com/stephencelis/haddock

DESCRIPTION

A more memorable password generator. Swordfish? No, I got tired of that. I changed it.

FEATURES/PROBLEMS

  • Secure!

SYNOPSIS

In your apps:

  require "rubygems"
  require "haddock"
  include Haddock
  Password.generate     # => "bowl9&bracky"
  Password.generate(30) # => "Phlebotomus2473?nonconditioned"
  Password.generate(8)  # => "amy7@rax"

On the command line:

  % ha-gen
  bowl9&bracky
  % ha-gen -l31
  symbolistically5<overthwartways

For more information:

stephencelis.com/2009/03/29/whats-the-password-haddock.html

REQUIREMENTS

A newline-delimited words file. By default, it uses "/usr/share/dict/words" or "/usr/share/words".

Otherwise:

  Haddock::Password.diction = "/path/to/words"

Or:

  % ha-gen -f /path/to/words

INSTALL

  % gem install haddock

LICENSE

(The MIT License)

© 2009-* Stephen Celis, stephen@stephencelis.com.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.