├── README.md ├── documentation.md ├── example-with-extutils-makemaker ├── .gitignore ├── Changes ├── MANIFEST.SKIP ├── Makefile.PL ├── README.md ├── lib │ └── My │ │ └── App.pm ├── script │ └── app.pl └── t │ └── add.t └── the-cpan-index.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilb/CPAN-Authors-Guide/HEAD/README.md -------------------------------------------------------------------------------- /documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilb/CPAN-Authors-Guide/HEAD/documentation.md -------------------------------------------------------------------------------- /example-with-extutils-makemaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilb/CPAN-Authors-Guide/HEAD/example-with-extutils-makemaker/.gitignore -------------------------------------------------------------------------------- /example-with-extutils-makemaker/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilb/CPAN-Authors-Guide/HEAD/example-with-extutils-makemaker/Changes -------------------------------------------------------------------------------- /example-with-extutils-makemaker/MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilb/CPAN-Authors-Guide/HEAD/example-with-extutils-makemaker/MANIFEST.SKIP -------------------------------------------------------------------------------- /example-with-extutils-makemaker/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilb/CPAN-Authors-Guide/HEAD/example-with-extutils-makemaker/Makefile.PL -------------------------------------------------------------------------------- /example-with-extutils-makemaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilb/CPAN-Authors-Guide/HEAD/example-with-extutils-makemaker/README.md -------------------------------------------------------------------------------- /example-with-extutils-makemaker/lib/My/App.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilb/CPAN-Authors-Guide/HEAD/example-with-extutils-makemaker/lib/My/App.pm -------------------------------------------------------------------------------- /example-with-extutils-makemaker/script/app.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilb/CPAN-Authors-Guide/HEAD/example-with-extutils-makemaker/script/app.pl -------------------------------------------------------------------------------- /example-with-extutils-makemaker/t/add.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilb/CPAN-Authors-Guide/HEAD/example-with-extutils-makemaker/t/add.t -------------------------------------------------------------------------------- /the-cpan-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilb/CPAN-Authors-Guide/HEAD/the-cpan-index.md --------------------------------------------------------------------------------