Codebase list libmodule-faker-perl / b61c320
versions Ricardo SIGNES 16 years ago
7 changed file(s) with 17 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
00 Revision history for ExtUtils-FakeMaker
1
2 0.002 2008-03-13
3 support perl 5.8
4 apparently my employers want to be able to use this code that I wrote
5 for work! ha!
16
27 0.001 2008-03-13
38 first revision, basically no documentation or tests, but hey! at
00 package ExtUtils::FakeMaker::Dist;
11 use Moose;
2
3 our $VERSION = '0.002';
24
35 use ExtUtils::FakeMaker::File;
46 use ExtUtils::FakeMaker::Heavy;
00 package ExtUtils::FakeMaker::File;
11 use Moose;
2
3 our $VERSION = '0.002';
24
35 has filename => (is => 'ro', isa => 'Str', required => 1);
46 has content => (is => 'ro', isa => 'Str', required => 1);
00 use strict;
11 use warnings;
22 package ExtUtils::FakeMaker::Heavy;
3
4 our $VERSION = '0.002';
35
46 use Carp ();
57 use Text::Template;
00 package ExtUtils::FakeMaker::Module;
11 use Moose;
2
3 our $VERSION = '0.002';
24
35 use ExtUtils::FakeMaker::Package;
46
00 package ExtUtils::FakeMaker::Package;
11 use Moose;
2
3 our $VERSION = '0.002';
24
35 use Moose::Util::TypeConstraints;
46
77
88 =head1 VERSION
99
10 version 0.001
10 version 0.002
1111
1212 =cut
1313
14 our $VERSION = '0.001';
14 our $VERSION = '0.002';
1515
1616 use ExtUtils::FakeMaker::Dist;
1717