projects
/
gitmo/Moose.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
7f92fab
)
No longer need version checks
Shawn M Moore [Thu, 14 Jun 2012 16:10:17 +0000 (11:10 -0500)]
lib/StackTrace/Auto.pm
patch
|
blob
|
blame
|
history
lib/Throwable.pm
patch
|
blob
|
blame
|
history
lib/Throwable/Error.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/StackTrace/Auto.pm
b/lib/StackTrace/Auto.pm
index
2749604
..
29cccd1
100644
(file)
--- a/
lib/StackTrace/Auto.pm
+++ b/
lib/StackTrace/Auto.pm
@@
-1,5
+1,5
@@
package StackTrace::Auto;
-use Moose::Role 0.87;
+use Moose::Role;
# ABSTRACT: a role for generating stack traces during instantiation
=head1 SYNOPSIS
diff --git
a/lib/Throwable.pm
b/lib/Throwable.pm
index
18d7352
..
dfc48e6
100644
(file)
--- a/
lib/Throwable.pm
+++ b/
lib/Throwable.pm
@@
-1,5
+1,5
@@
package Throwable;
-use Moose::Role 0.87;
+use Moose::Role;
# ABSTRACT: a role for classes that can be thrown
=head1 SYNOPSIS
diff --git
a/lib/Throwable/Error.pm
b/lib/Throwable/Error.pm
index
4e6f666
..
fb588a1
100644
(file)
--- a/
lib/Throwable/Error.pm
+++ b/
lib/Throwable/Error.pm
@@
-1,5
+1,5
@@
package Throwable::Error;
-use Moose 0.87;
+use Moose;
with 'Throwable', 'StackTrace::Auto';
# ABSTRACT: an easy-to-use class for error objects