diff -ruN empty/lib/msSmart.pm msSmart/lib/msSmart.pm --- empty/lib/msSmart.pm 1969-12-31 16:00:00.000000000 -0800 +++ msSmart/lib/msSmart.pm 2011-11-15 15:12:16.343750000 -0800 @@ -0,0 +1 @@ +package msSmart; 1; diff -ruN empty/mss.pl msSmart/mss.pl --- empty/mss.pl 1969-12-31 16:00:00.000000000 -0800 +++ msSmart/mss.pl 2011-11-15 15:23:46.781250000 -0800 @@ -0,0 +1,21 @@ +#!/usr/bin/perl -- +use strict; use warnings; +use Module::Starter qw/Module::Starter::Simple Module::Starter::Smart/; +Module::Starter->create_distro( + distro => 'Globbo', # distribution name (defaults to first module) + modules => [ 'msSmart' ], # modules to create in distro +#~ dir => 'Globbo', # directory in which to build distro + builder => 'Module::Build', # defaults to ExtUtils::MakeMaker + # or specify more than one builder in an + # arrayref + + license => 'perl', # type of license; defaults to 'perl' + author => 'author', # author's full name (required) + email => 'email', # author's email address (required) +#~ ignores_type => $type, # ignores file type ('generic', 'cvs', 'git', 'manifest' ) + + verbose => '1', # bool: print progress messages; defaults to 0 +#~ force => $force # bool: overwrite existing files; defaults to 0 +); +__END__ +