Skip to content

Instantly share code, notes, and snippets.

@masaki
Created December 5, 2011 05:47
Show Gist options
  • Save masaki/1432469 to your computer and use it in GitHub Desktop.
Save masaki/1432469 to your computer and use it in GitHub Desktop.
Module::Install on Module::Setup
use inc::Module::Install;
use Module::Install::AuthorTests;
use Module::Install::Repository;
use Module::Install::ReadmePodFromPod;
name '[% dist %]';
license 'perl';
all_from 'lib/[% module_unix_path %].pm';
# requires '';
tests 't/*.t';
test_requires 'Test::More' => 0.98;
test_requires 'Test::UseAllModules';
recursive_author_tests 'xt';
auto_set_repository;
readme_pod_from 'lib/[% module_unix_path %].pm';
WriteAll;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment