From: Shawn M Moore Date: Thu, 14 Jun 2012 16:10:17 +0000 (-0500) Subject: No longer need version checks X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c9209d236a7e2d59f990e628264535bcd199a11e;p=gitmo%2FMoose.git No longer need version checks --- diff --git a/lib/StackTrace/Auto.pm b/lib/StackTrace/Auto.pm index 2749604..29cccd1 100644 --- 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 --- 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 --- 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