summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-07-10 21:10:53 -0500
committerJesse Luehrs <doy@tozt.net>2009-07-10 21:10:53 -0500
commitab9522e662ae0eac3c7b5d44196d4d2f3b9f577e (patch)
tree03d611c6dec1355c810f08e02e5e34d6f81bd296
parent56c6299cf144da310ee527859a82380ae6001c38 (diff)
downloadapp-termcast-ab9522e662ae0eac3c7b5d44196d4d2f3b9f577e.tar.gz
app-termcast-ab9522e662ae0eac3c7b5d44196d4d2f3b9f577e.zip
add documentation for attributes
-rw-r--r--lib/App/Termcast.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/App/Termcast.pm b/lib/App/Termcast.pm
index 7121fe8..488e948 100644
--- a/lib/App/Termcast.pm
+++ b/lib/App/Termcast.pm
@@ -21,24 +21,28 @@ has host => (
is => 'rw',
isa => 'Str',
default => 'noway.ratry.ru',
+ documentation => 'Hostname of the termcast server to connect to',
);
has port => (
is => 'rw',
isa => 'Int',
default => 31337,
+ documentation => 'Port to connect to on the termcast server',
);
has user => (
is => 'rw',
isa => 'Str',
default => sub { $ENV{USER} },
+ documentation => 'Username for the termcast server',
);
has password => (
is => 'rw',
isa => 'Str',
default => 'asdf', # really unimportant
+ documentation => 'Password for the termcast server (mostly unimportant)',
);
sub run {