Subject: | Using Brick::Profile->lint with bricks from external packages |
Brick::Profile->lint() will always fail when attempting to verify a
profile that utilizes bricks from an external package. Line 195 of
Brick::Profile:
eval{ __PACKAGE__->brick_class->bucket_class->can( $method ) };
should really be:
eval{ $class->brick_class->bucket_class->can( $method ) };
so that the check is run against the bucket class associated with the
current profile rather than the bucket class associated with Brick::Profile.