diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-05-13 12:50:43 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-05-13 12:50:43 +0200 |
commit | 91ae0fd85e249a8035a1a1fb99647d8b3fca0a69 (patch) | |
tree | 26f92d3d8abf73dc1ecc712b5416415cd1c739be | |
parent | e00c62bde48404379d25a8ce2ffc2ce212a811ee (diff) |
Update changelog + slight documentation syntax improvement
-rw-r--r-- | Changelog | 1 | ||||
-rw-r--r-- | lib/App/Raps2.pm | 12 |
2 files changed, 7 insertions, 6 deletions
@@ -2,6 +2,7 @@ git HEAD * Fix XDG_CONFIG_HOME / XDG_DATA_HOME handling bug. Adds new dependency File::BaseDir + * Add "raps2 list" to list all saved accounts raps2 0.1 - Fri May 06 2011 diff --git a/lib/App/Raps2.pm b/lib/App/Raps2.pm index bc0bea4..6f00351 100644 --- a/lib/App/Raps2.pm +++ b/lib/App/Raps2.pm @@ -45,7 +45,7 @@ our $VERSION = '0.1'; =over -=item $raps2 = App::Raps2->new(%conf) +=item $raps2 = App::Raps2->new(I<%conf>) Returns a new B<App::Raps2> object. @@ -92,7 +92,7 @@ sub create_salt { return $salt; } -=item $raps2->file_to_hash($file) +=item $raps2->file_to_hash(I<$file>) Reads $file (lines with key/value separated by whitespace) and returns a hash with its key/value pairs. @@ -208,7 +208,7 @@ sub ui { return $self->{'ui'}; } -=item $raps2->cmd_add($name) +=item $raps2->cmd_add(I<$name>) Adds a new password file called $name. @@ -249,7 +249,7 @@ sub cmd_add { ); } -=item $raps2->cmd_dump($name) +=item $raps2->cmd_dump(I<$name>) Dumps the content of $name. @@ -279,7 +279,7 @@ sub cmd_dump { } } -=item $raps2->cmd_get($name) +=item $raps2->cmd_get(I<$name>) Puts the password saved in $name into the X clipboard. @@ -306,7 +306,7 @@ sub cmd_get { } } -=item $raps2->cmd_info($name) +=item $raps2->cmd_info(I<$name>) Prints unencrypted information about $name. |