From f6769b717aa68fa9de205f86fd9ecdf07b0cdb32 Mon Sep 17 00:00:00 2001 From: jluehrs2 Date: Fri, 9 May 2008 03:47:27 -0500 Subject: add description --- lib/App/Hiveminder/Command/Description.pm | 32 +++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 lib/App/Hiveminder/Command/Description.pm diff --git a/lib/App/Hiveminder/Command/Description.pm b/lib/App/Hiveminder/Command/Description.pm new file mode 100644 index 0000000..1e20c5f --- /dev/null +++ b/lib/App/Hiveminder/Command/Description.pm @@ -0,0 +1,32 @@ +#!/usr/bin/perl +package App::Hiveminder::Command::Description; +use Moose; +use App::Hiveminder::Utils qw/parse_args display_tasks/; +extends 'App::Hiveminder::Command'; + +=head2 NAME + +App::Hiveminder::Command::Description - Get the description of tasks + +=cut + +sub command_names { qw/description get-description get_description/ } + +sub command { + my $self = shift; + + return unless @_ > 0; + my @tasks = $self->hm->get_tasks(%{ parse_args @_ }); + + my $ret = ''; + for my $task (@tasks) { + my $display = display_tasks($self->hm, $task); + $ret .= "Description for $display:\n"; + $ret .= $task->{description} . "\n" if $task->{description}; + } + + return $ret; +} + +__PACKAGE__->meta()->make_immutable(); +1; -- cgit v1.2.3-54-g00ecf