The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Acme::Nyaa - Convert texts like which a cat is talking in Japanese

SYNOPSIS

        use Acme::Nyaa;
        my $kijitora = Acme::Nyaa->new;

        print $kijitora->cat( \'猫がかわいい。' );     # => 猫がかわいいニャー。
        print $kijitora->neko( \'神と和解せよ' );     # => ネコと和解せよ

DESCRIPTION

Acme::Nyaa is a converter which translate Japanese texts to texts like which a cat talking. Language modules are available only Japanese (Acme::Nyaa::Ja) for now.

Nyaa is ニャー, Cats living in Japan meows nyaa.

CLASS METHODS

new( [%argv] )

new() is a constructor of Acme::Nyaa

INSTANCE METHODS

cat( \$text )

cat() is a converter that appends string ニャー at the end of each sentence.

neko( \$text )

neko() is a converter that replace a noun with ネコ.

nyaa( [\$text] )

nyaa() returns string: ニャー.

REPOSITORY

https://github.com/azumakuniyuki/p5-Acme-Nyaa

INSTALL FROM REPOSITORY

        % sudo cpanm Module::Install
        % cd /usr/local/src
        % git clone git://github.com/azumakuniyuki/p5-Acme-Nyaa.git
        % cd ./p5-Acme-Nyaa
        % perl Makefile.PL && make && make test && sudo make install

AUTHOR

azumakuniyuki <perl.org [at] azumakuniyuki.org>

SEE ALSO

Acme::Nyaa::Ja - Japanese module for Acme::Nyaa

LICENSE

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