├── .circleci └── config.yml ├── .gitignore ├── META6.json ├── README.md ├── lib └── Data │ └── Dump.rakumod └── t ├── 00-use.t ├── 01-hash.t ├── 02-obj.t ├── 03-array.t ├── 04-gist.t ├── 05-skipmethods.t ├── 06-match.t ├── 07-obj-no-postfix.t └── 08-override.t /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony-o/perl6-data-dump/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | blib/* 2 | .precomp 3 | *.swp 4 | -------------------------------------------------------------------------------- /META6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony-o/perl6-data-dump/HEAD/META6.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony-o/perl6-data-dump/HEAD/README.md -------------------------------------------------------------------------------- /lib/Data/Dump.rakumod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony-o/perl6-data-dump/HEAD/lib/Data/Dump.rakumod -------------------------------------------------------------------------------- /t/00-use.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony-o/perl6-data-dump/HEAD/t/00-use.t -------------------------------------------------------------------------------- /t/01-hash.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony-o/perl6-data-dump/HEAD/t/01-hash.t -------------------------------------------------------------------------------- /t/02-obj.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony-o/perl6-data-dump/HEAD/t/02-obj.t -------------------------------------------------------------------------------- /t/03-array.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony-o/perl6-data-dump/HEAD/t/03-array.t -------------------------------------------------------------------------------- /t/04-gist.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony-o/perl6-data-dump/HEAD/t/04-gist.t -------------------------------------------------------------------------------- /t/05-skipmethods.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony-o/perl6-data-dump/HEAD/t/05-skipmethods.t -------------------------------------------------------------------------------- /t/06-match.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony-o/perl6-data-dump/HEAD/t/06-match.t -------------------------------------------------------------------------------- /t/07-obj-no-postfix.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony-o/perl6-data-dump/HEAD/t/07-obj-no-postfix.t -------------------------------------------------------------------------------- /t/08-override.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tony-o/perl6-data-dump/HEAD/t/08-override.t --------------------------------------------------------------------------------