+ - Minor doc fix to does_role
- Split Role::Tiny out into its own dist
Changes below this line are from when Role::Tiny was still bundled with Moo:
This subroutine is also installed as ->does on any class a Role::Tiny is
composed into unless that class already has an ->does method, so
- if ($foo->does_role('Some::Role')) {
+ if ($foo->does('Some::Role')) {
...
}