No longer need version checks
Shawn M Moore [Thu, 14 Jun 2012 16:10:17 +0000 (11:10 -0500)]
lib/StackTrace/Auto.pm
lib/Throwable.pm
lib/Throwable/Error.pm

index 2749604..29cccd1 100644 (file)
@@ -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
index 18d7352..dfc48e6 100644 (file)
@@ -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
index 4e6f666..fb588a1 100644 (file)
@@ -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