Skip to content

Instantly share code, notes, and snippets.

@lestrrat
Created September 23, 2009 12:40
Show Gist options
  • Save lestrrat/191952 to your computer and use it in GitHub Desktop.
Save lestrrat/191952 to your computer and use it in GitHub Desktop.
use strict;
use KiokuDB;
use KiokuDB::Class;
print "Class::MOP -> ", $Class::MOP::VERSION, "\n";
print "Moose -> ", $Moose::VERSION, "\n";
print "KiokuDB -> ", $KiokuDB::VERSION, "\n";
my $meta = Moose::Meta::Class->initialize('KiokuDB::Class');
$meta->get_method_list();
__END__
KiokuDB::Class does not export its sugar to the 'main' package.
Class::MOP -> 0.94
Moose -> 0.92
KiokuDB -> 0.32
Can't call method "wrap" on an undefined value at /Users/daisuke/perl5/lib/perl5/darwin-2level/Class/MOP/Package.pm line 306.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment