Module: ToPass

Defined in:
lib/to_pass.rb,
lib/to_pass/cli.rb,
lib/to_pass/base.rb,
lib/to_pass/version.rb,
lib/to_pass/converter.rb,
lib/to_pass/converters.rb,
lib/to_pass/directories.rb,
lib/to_pass/file_reader.rb,
lib/to_pass/config_reader.rb,
lib/to_pass/algorithm_reader.rb,
lib/to_pass/converter_reader.rb

Overview

:nodoc:

Defined Under Namespace

Modules: Converters, Integration Classes: AlgorithmReader, Base, Cli, ConfigReader, Converter, ConverterReader, Directories, FileReader

Constant Summary collapse

VERSION =

version of gem

'1.0.1'
APP_NAME =

name of gem

'to_pass'
DATE =

date of last modification of the version

File.mtime(__FILE__)
SUMMARY =

Purpose in one sentence

'generate password from words or sentences'
DESCRIPTION =

short description, see README for details

<<-EOD
Passwords should be easy to remember and hard to guess.
One technique is to have a sentence which can be easily remembered transformed to a password.

Pluggable algorithms and converters allow customization of the transformation process.
EOD
EXTRA_RDOC_FILES =

list of file which should be included in rdoc

['doc/CHANGELOG', 'doc/LICENSE', 'README.rdoc', 'TODO']
RELEASE_NOTES =

easy access to the RELEASE_NOTES

begin
  fn = File.expand_path('../../../doc/RELEASE_NOTES', __FILE__)
  File.read(fn) if File.size?(fn)
end