├── dist.ini ├── Build.PL ├── .gitignore ├── Changes ├── cpanfile ├── t └── basic.t ├── README.md ├── lib └── Acme │ └── Blue.pm └── META.json /dist.ini: -------------------------------------------------------------------------------- 1 | [@Milla] 2 | -------------------------------------------------------------------------------- /Build.PL: -------------------------------------------------------------------------------- 1 | use 5.006; 2 | use Module::Build::Tiny 0.013; 3 | Build_PL(); 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /Acme-Blue-* 2 | /.build 3 | /_build* 4 | /Build 5 | MYMETA.* 6 | !META.json 7 | -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- 1 | Revision history for Acme-Blue 2 | 3 | {{$NEXT}} 4 | - Initial release 5 | -------------------------------------------------------------------------------- /cpanfile: -------------------------------------------------------------------------------- 1 | # requires 'Some::Module', 'VERSION'; 2 | 3 | on test => sub { 4 | requires 'Test::More', '0.88'; 5 | }; 6 | -------------------------------------------------------------------------------- /t/basic.t: -------------------------------------------------------------------------------- 1 | use strict; 2 | use Test::More; 3 | use Acme::Blue; 4 | 5 | # replace with the actual test 6 | ok 1; 7 | 8 | done_testing; 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NAME 2 | 3 | Acme::Blue - Blah blah blah 4 | 5 | # SYNOPSIS 6 | 7 | use Acme::Blue; 8 | 9 | # DESCRIPTION 10 | 11 | Acme::Blue is 12 | 13 | # AUTHOR 14 | 15 | Tatsuhiko Miyagawa 16 | 17 | # COPYRIGHT 18 | 19 | Copyright 2013- Tatsuhiko Miyagawa 20 | 21 | # LICENSE 22 | 23 | This library is free software; you can redistribute it and/or modify 24 | it under the same terms as Perl itself. 25 | 26 | # SEE ALSO 27 | -------------------------------------------------------------------------------- /lib/Acme/Blue.pm: -------------------------------------------------------------------------------- 1 | package Acme::Blue; 2 | 3 | use strict; 4 | use 5.008_005; 5 | our $VERSION = '0.01'; 6 | 7 | 1; 8 | __END__ 9 | 10 | =encoding utf-8 11 | 12 | =head1 NAME 13 | 14 | Acme::Blue - Blah blah blah 15 | 16 | =head1 SYNOPSIS 17 | 18 | use Acme::Blue; 19 | 20 | =head1 DESCRIPTION 21 | 22 | Acme::Blue is 23 | 24 | =head1 AUTHOR 25 | 26 | Tatsuhiko Miyagawa Emiyagawa@bulknews.netE 27 | 28 | =head1 COPYRIGHT 29 | 30 | Copyright 2013- Tatsuhiko Miyagawa 31 | 32 | =head1 LICENSE 33 | 34 | This library is free software; you can redistribute it and/or modify 35 | it under the same terms as Perl itself. 36 | 37 | =head1 SEE ALSO 38 | 39 | =cut 40 | -------------------------------------------------------------------------------- /META.json: -------------------------------------------------------------------------------- 1 | { 2 | "abstract" : "Blah blah blah", 3 | "author" : [ 4 | "Tatsuhiko Miyagawa " 5 | ], 6 | "dynamic_config" : 0, 7 | "generated_by" : "Dist::Zilla version 4.300031, CPAN::Meta::Converter version 2.120921", 8 | "license" : [ 9 | "perl_5" 10 | ], 11 | "meta-spec" : { 12 | "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", 13 | "version" : "2" 14 | }, 15 | "name" : "Acme-Blue", 16 | "prereqs" : { 17 | "configure" : { 18 | "requires" : { 19 | "Module::Build::Tiny" : "0.013" 20 | } 21 | }, 22 | "develop" : { 23 | "requires" : { 24 | "Test::Pod" : "1.41" 25 | } 26 | }, 27 | "test" : { 28 | "requires" : { 29 | "Test::More" : "0.88" 30 | } 31 | } 32 | }, 33 | "release_status" : "stable", 34 | "version" : "0.01" 35 | } 36 | 37 | --------------------------------------------------------------------------------