projects
/
gitmo/Mouse.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Avoid the warning about exporting sugar into main
[gitmo/Mouse.git]
/
Makefile.PL
1
use inc::Module::Install;
2
3
name 'Mouse';
4
all_from 'lib/Mouse.pm';
5
6
tests 't/*.t t/*/*.t';
7
8
if ($] < 5.007003) {
9
requires 'Scalar::Util';
10
}
11
12
build_requires 'Test::Exception';
13
build_requires 'Test::More';
14
15
auto_include;
16
WriteAll;