While attempting to authenticate using goauth, I encountered a crash, because the program couldn't, quote
[error] Can't call method "pp" on unblessed reference at /home/veesh/perl5/bin/goauth line 153.
It seems like you switched from Data::Dumper to Data::Dump at some point, and the latter doesn't export pp() by default. Changing the 'use' line to
use Data::Dump qw/pp/;
solves the issue.
This seemed a drop small to make a pull request on, so I'm posting this issue here. I'm excited to use this module, and I'll be happy to help improve it however I can.
While attempting to authenticate using goauth, I encountered a crash, because the program couldn't, quote
[error] Can't call method "pp" on unblessed reference at /home/veesh/perl5/bin/goauth line 153.
It seems like you switched from Data::Dumper to Data::Dump at some point, and the latter doesn't export pp() by default. Changing the 'use' line to
use Data::Dump qw/pp/;
solves the issue.
This seemed a drop small to make a pull request on, so I'm posting this issue here. I'm excited to use this module, and I'll be happy to help improve it however I can.