From ab9522e662ae0eac3c7b5d44196d4d2f3b9f577e Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 10 Jul 2009 21:10:53 -0500 Subject: add documentation for attributes --- lib/App/Termcast.pm | 4 ++++ 1 file changed, 4 insertions(+) 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 { -- cgit v1.2.3-54-g00ecf