X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst.pm;h=4ce44ede85e87ec0b5608969c970561ae9af04d6;hb=c3f6d73a290413c26d0f2a1c100fb857a9eb9403;hp=8805134d3b802db8495121558eea16943892f56f;hpb=8833fe2c623febe3dce86b24a467a5248ea0849c;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 8805134..4ce44ed 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -77,6 +77,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! our $VERSION = '5.8000_06'; +$VERSION = eval $VERSION; sub import { my ( $class, @arguments ) = @_; @@ -2051,7 +2052,7 @@ sub setup_components { my $deprecated_component_names = grep { /::[CMV]::/ } @comps; $class->log->warn(qq{Your application is using the deprecated ::[MVC]:: type naming scheme.\n}. qq{Please switch your class names to ::Model::, ::View:: and ::Controller: as appropriate.\n} - ); + ) if $deprecated_component_names; for my $component ( @comps ) {