diff --git a/MANIFEST b/MANIFEST deleted file mode 100644 index de8baf7..0000000 --- a/MANIFEST +++ /dev/null @@ -1,9 +0,0 @@ -Changes -lib/File/Assets/Precompile.pm -Makefile.PL -MANIFEST This list of files -README -t/00-load.t -t/manifest.t -t/pod-coverage.t -t/pod.t diff --git a/Makefile.PL b/Makefile.PL deleted file mode 100644 index 935a45c..0000000 --- a/Makefile.PL +++ /dev/null @@ -1,28 +0,0 @@ -use 5.006; -use strict; -use warnings; -use ExtUtils::MakeMaker; - -WriteMakefile( - NAME => 'File::Assets::Precompile', - AUTHOR => q{Dinis Lage }, - VERSION_FROM => 'lib/File/Assets/Precompile.pm', - ABSTRACT_FROM => 'lib/File/Assets/Precompile.pm', - LICENSE => 'artistic_2', - PL_FILES => {}, - MIN_PERL_VERSION => 5.006, - CONFIGURE_REQUIRES => { 'ExtUtils::MakeMaker' => 0, }, - BUILD_REQUIRES => { 'Test::More' => 0, }, - PREREQ_PM => { - 'JavaScript::Minifier::XS' => 0, - 'Path::Class' => 0, - 'CSS::Minifier::XS' => 0, - 'Log::Log4perl' => 0, - 'File::MMagic' => 0, - - #'ABC' => 1.6, - #'Foo::Bar::Module' => 5.0401, - }, - dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, - clean => { FILES => 'File-Assets-Precompile-*' }, -); diff --git a/dist.ini b/dist.ini new file mode 100644 index 0000000..6eb3a7c --- /dev/null +++ b/dist.ini @@ -0,0 +1,20 @@ +name = File-Assets-Precompile +version = 0.0.1 +author = Dinis Lage +license = Perl_5 +copyright_holder = Dinis Lage +main_module = lib/File/Assets/Precompile.pm + +[Prereqs] +Carp = 0 +Log::Log4perl = 0 +File::MMagic = 0 +Path::Class = 0 +JavaScript::Minifier::XS = 0 +CSS::Minifier::XS = 0 + +[@Basic] +[Test::Perl::Critic] +[PodCoverageTests] +[PodSyntaxTests] +[@Git] diff --git a/lib/File/Assets/Precompile.pm b/lib/File/Assets/Precompile.pm index d53d806..8db73a6 100644 --- a/lib/File/Assets/Precompile.pm +++ b/lib/File/Assets/Precompile.pm @@ -1,11 +1,11 @@ package File::Assets::Precompile; -{ - $File::Assets::Precompile::VERSION = '0.0.1'; -} use 5.006; use strict; use warnings; +{ + $File::Assets::Precompile::VERSION = '0.0.1'; +} use Log::Log4perl; my $l = Log::Log4perl::get_logger();