Skip to content

gphat/data-money-converter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NAME
    Data::Money::Converter - Moose Role for Data::Money Converters

DESCRIPTION
    This simple module provides a base for building currency conversion
    backends for Data::Money. You can use this module either as a basis for
    understanding the common features or as a guide for implmenting your own
    converter.

SYNOPSIS
        package MyConverter;
        use Moose;
        
    with 'Data::Money::Converter';

        sub convert {
            my ($self, $money, $code) = @_;

            # convert $money->value to $code and return a new Data::Money object
        }

        1;

METHODS
    This role requires that you implement a "convert" method. It should
    expect 2 arguments: an isntance of Data::Money and a 3-character
    currency code. It does not do any checking of the code as not all
    conversion implementations may support all codes. It is recommended that
    you consult Locale::Currency.

AUTHOR
    Cory G Watson, "<gphat at cpan.org>"

ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE
    Copyright 2010 Cory G Watson.

    This program is free software; you can redistribute it and/or modify it
    under the terms of either: the GNU General Public License as published
    by the Free Software Foundation; or the Artistic License.

    See http://dev.perl.org/licenses/ for more information.

About

Conversion role for Data::Currency

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages