projects
/
gitmo/Role-Tiny.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
history
|
HEAD
Explicitly return the DOES coderef if we install it
[gitmo/Role-Tiny.git]
/
t
/
role-basic
/
lib
/
My
/
Example.pm
Commit
Line
Data
8e50c419
1
package My::Example;
2
836aea1b
3
use Role::Tiny 'with';
8e50c419
4
5
with 'My::Does::Basic';
6
7
sub new { bless {} => shift }
8
9
sub turbo_charger {}
10
$My::Example::foo = 1;
11
sub foo() {}
12
13
1;