Time::Fuzzy - Time read like a human, with some fuzziness


Time-Fuzzy documentation  | view source Contained in the Time-Fuzzy distribution.

Index


NAME

Top

Time::Fuzzy - Time read like a human, with some fuzziness

SYNOPSIS

Top

    use Time::Fuzzy;

    my $now = fuzzy();
    $Time::Fuzzy::FUZZINESS = 'low'; # or 'high', 'medium' (default)
    my $fuz = fuzzy( DateTime->new(...) );

    my $fuzzy = Time::Fuzzy->new;
    print $fuzzy->as_str;







DESCRIPTION

Top

Nobody will ever say "it's 11:57". People just say "it's noon".

This Perl module does just the same: it adds some human fuzziness to the way computer deal with time.

By default, Time::Fuzzy is using a medium fuzziness factor. You can change that by modifying $Time::Fuzzy::FUZZINESS. The accepted values are low, medium or high.

FUNCTIONS

Top

my $fuzzy = fuzzy( [ $dt ] )

Return the fuzzy time defined by $dt, a DateTime object. If no argument, return the (fuzzy) current time.

METHODS

Top

If you prefer, you can use Time::Fuzzy in a OOP style. In that case, the following methods are available.

my $fuzzy = Item::Fuzzy->new( [dt=>$dt, fuzziness=>fuzziness] )

This is the constructor. It accepts the following params:

. dt => $dt: a DateTime object, defaults to current time.
. fuzziness => $fuzziness: the wanted fuziness, defaults to current $Time::Fuzzy::FUZZINESS.

Additionally, the accessors dt and fuzziness are available.

my $str = $fuzzy->as_str()

Return the fuzzy string of the current time of the object. This method is also the overloaded stringified method.

BUGS

Top

Please report any bugs or feature requests to < bug-time-fuzzy at rt.cpan.org>, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Time-Fuzzy. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SEE ALSO

Top

Time::Fuzzy development takes place on http://time-fuzzy.googlecode.com - feel free to join us.

You can also look for information on this module at:

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Time-Fuzzy

* CPAN Ratings

http://cpanratings.perl.org/d/Time-Fuzzy

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Time-Fuzzy

AUTHOR

Top

Jerome Quelin, <jquelin at cpan.org>

COPYRIGHT & LICENSE

Top


Time-Fuzzy documentation  | view source Contained in the Time-Fuzzy distribution.