Module: FunWith::Passwords

Defined in:
lib/fun_with_passwords.rb,
lib/fun_with/passwords/crypt.rb,
lib/fun_with/passwords/console.rb,
lib/fun_with/passwords/keychain.rb,
lib/fun_with/passwords/file_store.rb,
lib/fun_with/passwords/command_line.rb,
lib/fun_with/passwords/command_line_result.rb

Defined Under Namespace

Classes: CommandLine, CommandLineResult, Console, Crypt, FileStore, Keychain

Constant Summary collapse

ACTION_KEYWORDS_TO_ACTIONS =
{
  "init"       => :initialize,
  "initialize" => :initialize,
  "new"        => :initialize,
  "create"     => :initialize,
  "add"        => :add,
  "insert"     => :add,
  "remove"     => :remove,
  "rm"         => :remove,
  "rmv"        => :remove,
  "drop"       => :remove,
  "delete"     => :delete,
  "del"        => :delete,
  "display"    => :display,
  "disp"       => :display,
  "reveal"     => :display,
  "show"       => :display,
  "view"       => :display,
  "help"       => :help,
  "h"          => :help,
  "rekey"      => :rekey
}