Subject: | Update Safe::Hole to modern layout and increase tests |
Safe::Hole is emitting warnings due to it's use of defined %hash, which is
now deprecated in perl
removing defined has the same effect as it returns a scalar count of
keys.
In order to clean this up I'd like to submit my github changes as a
candidate for 0.11
It contains the following enhancements:
- re-structure module to more modern layout. Convert to M::B
- re-factor tests to test::more
- pod fixes now we're testing them
- clean up authors and generate proper META.yml
- Fix 5.10 deprecation of defined %hash. Just use %hash to the same
effect.