X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FContext.pm;fp=lib%2FCatalyst%2FContext.pm;h=74531244cfd19b3a3f1b19a535e7e7affc9d94e6;hp=98a8e3e39e45efbdc9fe873dd1238da25255d2b3;hb=500f0bab7a9ca915ec76f07f562abc6e0eb7eea7;hpb=54642e5a9d2365d9765360614cd753d7ca1df7aa diff --git a/lib/Catalyst/Context.pm b/lib/Catalyst/Context.pm index 98a8e3e..7453124 100644 --- a/lib/Catalyst/Context.pm +++ b/lib/Catalyst/Context.pm @@ -2,8 +2,6 @@ package Catalyst::Context; use Moose; -BEGIN { require 5.008004; } - has action => (is => 'rw'); has counter => (is => 'rw', default => sub { {} }); has namespace => (is => 'rw'); @@ -16,17 +14,6 @@ has stash => (is => 'rw', default => sub { {} }); has state => (is => 'rw', default => 0); has stats => (is => 'rw'); -# Remember to update this in Catalyst::Runtime as well! - -our $VERSION = '5.80013'; - -{ - my $dev_version = $VERSION =~ /_\d{2}$/; - *_IS_DEVELOPMENT_VERSION = sub () { $dev_version }; -} - -$VERSION = eval $VERSION; - no Moose; __PACKAGE__->meta->make_immutable;