Badger icon indicating copy to clipboard operation
Badger copied to clipboard

Perl application programming toolkit

Results 5 Badger issues
Sort by recently updated
recently updated
newest added

Hey, According to the perldoc for Badger::Class::Methods, you should be able to use this module directly, however it fails to compile with Perl v5.36: ``` puck@dirk:~/personal/RT/debian/Badger$ perl -Ilib -c lib/Badger/Class/Methods.pm...

Hey, Badger::Codecs fails to compile with Perl v5.36: ``` puck@dirk:~/personal/RT/debian/Badger$ perl -Ilib -c lib/Badger/Codecs.pm Bareword "CHAINED" not allowed while "strict subs" in use at lib/Badger/Codecs.pm line 60. BEGIN not safe...

There's a missing semicolon...

I have made some changes that might be nice. 1) Decoupled the setting of the log level from the actual log output 2) Started using Badger::Timestamp to generate the timestamp...

`Badger::Filesystem::File::directory` and `Badger::Filesystem::File::parent` yield a `Badger::Filesystem::Directory` that omits the `File`'s volume part. Example: ``` use Badger::Filesystem 'FS'; $file = FS->file('C:/path/to/file.txt'); # Badger::Filesystem::File $file->path; # 'C:\path\to\file.txt', OK $file->volume; # 'C:', OK...