├── .gitignore ├── .mailmap ├── CONTRIBUTING.md ├── Changes ├── LICENSE ├── MANIFEST.SKIP ├── README.md ├── cpanfile ├── dist.ini ├── lib └── App │ ├── WordPressTools.pm │ └── WordPressTools │ └── Contributing.pod ├── maint ├── branch_dist.pl ├── branch_solo.pl └── fatpack.pl ├── perlcritic.rc ├── script └── wp-tools └── t ├── 00-external-dependencies.t ├── 00-load.t └── 01-basic-flags.t /.gitignore: -------------------------------------------------------------------------------- 1 | /.build 2 | /.perl-version 3 | /App-WordPressTools-* 4 | MYMETA.* 5 | -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/.mailmap -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/Changes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.SKIP: -------------------------------------------------------------------------------- 1 | ^maint/ 2 | dist\.ini 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/README.md -------------------------------------------------------------------------------- /cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/cpanfile -------------------------------------------------------------------------------- /dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/dist.ini -------------------------------------------------------------------------------- /lib/App/WordPressTools.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/lib/App/WordPressTools.pm -------------------------------------------------------------------------------- /lib/App/WordPressTools/Contributing.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/lib/App/WordPressTools/Contributing.pod -------------------------------------------------------------------------------- /maint/branch_dist.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/maint/branch_dist.pl -------------------------------------------------------------------------------- /maint/branch_solo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/maint/branch_solo.pl -------------------------------------------------------------------------------- /maint/fatpack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/maint/fatpack.pl -------------------------------------------------------------------------------- /perlcritic.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/perlcritic.rc -------------------------------------------------------------------------------- /script/wp-tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/script/wp-tools -------------------------------------------------------------------------------- /t/00-external-dependencies.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/t/00-external-dependencies.t -------------------------------------------------------------------------------- /t/00-load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/t/00-load.t -------------------------------------------------------------------------------- /t/01-basic-flags.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluehost/wp-tools/HEAD/t/01-basic-flags.t --------------------------------------------------------------------------------