Simple Command Line Interface for Ditz - afo released

afo is a yet another command line interface for ditz (http://ditz.rubyforge.org/). afo aims to give almost information of an issue by command line parameters (no interaction).

Dependencies

  • The Glorious Glasgow Haskell Compilation System, version 6.12.2

Download

You can download this project in either zip or tar formats. You can also clone the project with Git by running:

$ git clone git://github.com/SumiTomohiko/afo

Install

$ runhaskell Setup configure --prefix=${HOME} --user
$ runhaskell Setup build
$ runhaskell Setup install

How to Use

Initialize

afo can't initialize a repository. Use ditz.

$ ditz init
Add An Issue

Type:

$ afo add <type> <component> <title>

<type> is one of task, bugfix or feature. When this command is executed, afo executes ${EDITOR} to input a description. For example,

$ afo add bugfix core "segmentation fault"

The above example register new issue whose type is bugfix, whose component is core and whose title is "segmentation fault".

Differences from Ditz

afo registers an issue with next parameters:

key value
release blank
reporter name and email in .ditz-config
status unstarted
disposition blank

License

BSD3, that is:

Copyright (c) 2010, Tomohiko Sumi
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

Redistributions of source code must retain the above copyright notice, this list
of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
Neither the name of Tomohiko Sumi nor the names of its contributors may be used
to endorse or promote products derived from this software without specific
prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Author & Contact

Tomohiko Sumi (SumiTomohiko@neko-daisuki.ddo.jp)