├── .gitignore ├── LICENSE ├── MANIFEST ├── Makefile.PL ├── README.pod └── stasis /.gitignore: -------------------------------------------------------------------------------- 1 | backup_list 2 | .* 3 | *.old 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnmfarrell/Stasis/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- 1 | LICENSE 2 | Makefile.PL 3 | MANIFEST This list of files 4 | README.pod 5 | stasis 6 | -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnmfarrell/Stasis/HEAD/Makefile.PL -------------------------------------------------------------------------------- /README.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnmfarrell/Stasis/HEAD/README.pod -------------------------------------------------------------------------------- /stasis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnmfarrell/Stasis/HEAD/stasis --------------------------------------------------------------------------------