These are just my notes on building, testing and distributing this module.
Your mileage may vary.

Installing a test version locally

  export PERL_LOCAL_LIB_ROOT="$HOME/perl5";
  export PERL_MB_OPT="--install_base $HOME/perl5";
  export PERL_MM_OPT="INSTALL_BASE=$HOME/perl5";
  export PERL5LIB="$HOME/perl5/lib/perl5:$PERL5LIB";
  export PATH="$HOME/perl5/bin:$PATH";

  perl Makefile.PL && make test && make install
  make clean

To create a new dist package

  perl Makefile.PL
  make manifest
  make dist
  make disttest

When done, run:

  make distclean

    or

  make verycleangit 

Using "git flow"

    git flow release start 0.03
    # bump release string in META.yml and lib/Config/Versioned.pm
    make veryclean

Pushing CPAN modules from Github to CPAN
(from http://blog.usarundbrief.com/?p=36)

- Check that Makefile.PL, META.yml and MANIFEST are in the top directory

- Tag the release and push the tag to github

    git tag rel_001
    git push --tags

- At PAUSE (https://pause.perl.org/pause/authenquery?ACTION=add_uri), enter
the URL and click on "Upload this URL"

    http://nodeload.github.com/mrscotty/Config-Versioned/tarball/rel_001/Config-Versioned-0.01.tgz


