NAME
Task::BeLike::FIBO -- Leonardo Pisano a.k.a. Fibonacci
SYNOPSIS
cpan Task::BeLike::FIBO
perldoc Task::BeLike::FIBO
DESCRIPTION
Hi! I am FIBO an italian mathematician. I graduated in 2005 at Università degli Studi di Genova and since then I work doing Business Intelligence and Web Analytics. My boss said: you need Perl. So I started using this language. I like many programming languages, but, Perl really help me to pay my rent.
This is a primary about my habits and a collection of modules I use when I write Perl code.
PACKAGE GUIDELINES
Do not get crazy with automatic generators. I am a mathematician and a coder, not a corporation. Every package is different and has different needings. The followings are samples for files I usually need in a package.
Just use copy and paste and your brain!
The smack of a DRY KISS is not that bad.
Learn from nature: stay as minimal as possible.
FILES
Follows a list of sample files of a package, MY::Package for instance.
README.md
My-Package ========== My-Package description ... To install, pray the mantra perl Makefile.PL make make test make install For more information point your browser to [online docs](https://metacpan.org/pod/My::Package) -------- [](https://metacpan.org/pod/My::Package) [](https://travis-ci.org/fibo/My-Package-pm) [](https://coveralls.io/r/fibo/My-Package-pm?branch=master).travis.yml
language: perl perl: - "5.18" - "5.16" - "5.14" - "5.12" - "5.10" - "5.8".gitignore
.* *~ !.gitignore !.travis.yml blib pm_to_blib Makefile* !Makefile.PL MANIFEST* !MANIFEST.SKIP *META.* *.tar.gzMakefile.PL
use strict; use warnings; use ExtUtils::MakeMaker 6.64; WriteMakefile( ABSTRACT_FROM => 'lib/My/Package.pm', VERSION_FROM => 'lib/My/Package.pm', AUTHOR => 'G. Casati <fibo@cpan.org>', NAME => 'My::Package', META_MERGE => { resources => { homepage => 'https://metacpan.org/pod/My::Package' license => 'http://g14n.info/mit-license', repository => 'http://github.com/fibo/My-Package-pm', bugtracker => 'http://github.com/fibo/My-Package-pm/issues', }, PREREQ_PM => { # 'Some::Package' => '0', # 'Other::Package' => '1.2.3', }, test => { TESTS => 't/*.t' }, TEST_REQUIRES => { 'Test::Compile' => '1', 'Test::More' => '1', 'Test::Pod' => '1', } );MANIFEST.SKIP
^MANIFEST\.SKIP$ ^MANIFEST\.bak$ ^\. .*\.old$ .*\.bak$ \.tar\.gz$ ^Makefile$ ^MYMETA\. ^blib ^pm_to_blib
WORKFLOW
Start a feature branch
git checkout -b somefeatureWrite documentation about new feature. Then write tests to check it and code to implement it.
Run tests
prove -l --state=saveIf some test does not pass, fix code and run tests that failed
prove -l --state=save,failedMerge feature branch and commit work
git rebase master git checkout master git merge somefeature git pushUpdate version, use Semantic Versioning.
Create a new release
perl Makefile.PL make make test make manifest make dist make realcleanUpload to PAUSE
cpan-upload -u fibo My-Package-0.1.tar.gz
STUFF INCLUDED
-
See how to setup A CPAN client that works like a charm.
ExtUtils::MakeMaker version
6.64, cause I use theTEST_REQUIRESoption.-
Use Perl::Tidy defaults. Do not indent every source file automatically, indent by hand and use your creativity.
See Perl section in My Vim preferences to see how you can use perltidy with Vim.
-
Create a
t/_compile.tfileuse strict; use warnings; use Test::More; eval "use Test::Compile"; Test::More->builder->BAIL_OUT(<<EOF) if $@; Test::Compile required for testing compilation EOF all_pm_files_ok(); -
Create a
t/_pod.tfileuse strict; use warnings; use Test::More; eval "use Test::Pod"; Test::More->builder->BAIL_OUT(<<EOF) if $@; Test::Pod required for testing compilation EOF all_pod_files_ok();