App-Transpierce
view release on metacpan or search on metacpan
lib/App/Transpierce.pm view on Meta::CPAN
# create transpierce.conf file, which describes files to be altered
echo "target /production/directory" >> dirty_production_task/transpierce.conf
echo "production/file.ext" >> dirty_production_task/transpierce.conf
# see what actions will be taken
transpierce --describe dirty_production_task
# set up the environment for that task
transpierce dirty_production_task
# recommended: verify the contents of .sh files
cat dirty_production_task/*.sh
# recommended: set up a git repository (if it is available)
cd dirty_production_task
git init
git add -A
git commit -m "Initial setup"
=head1 DESCRIPTION
t/00-main-package.t view on Meta::CPAN
use v5.10;
use strict;
use warnings;
use Test::More;
# App::Transpierce should have no code, but still - verify whether it is
# required ok
use_ok 'App::Transpierce';
done_testing;
( run in 1.372 second using v1.01-cache-2.11-cpan-73692580452 )