Module::Install::MicroTemplate - rendering template automatically


Module-Install-MicroTemplate documentation  | view source Contained in the Module-Install-MicroTemplate distribution.

Index


NAME

Top

Module::Install::MicroTemplate - rendering template automatically

SYNOPSIS

Top

    use inc::Module::Install;

    render_mt 'Foo.xs.mt' => 'Foo.xs';

DESCRIPTION

Top

This module allows you can write XS code in DRY policy by Text::MicroTemplate.

In some time, you want to preprocess your XS code, like following:

    void
    set_user(const char * s)
        foo_set_user(s)

    void
    set_password(const char * s)
        foo_set_password(s)

I want to write like following:

    ? for my $v (qw/user password/) {
    void
    set_<?= $v ?>(const char * s)
        foo_set_<?= $v ?>(s)
    ? }

Of course, you can use this module for any file other than XS =)

METHODS

Top

render_mt $src => $dst;

Render the template $src using Text::MicroTemplate and write to $dst.

AUTHOR

Top

Tokuhiro Matsuno <tokuhirom slkjfd gmail.com>

SEE ALSO

Top

Text::MicroTemplate

LICENSE

Top

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


Module-Install-MicroTemplate documentation  | view source Contained in the Module-Install-MicroTemplate distribution.