X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FEngine%2FHTTP%2FRestarter%2FWatcher.pm;h=18ce316269a9c4a2ad64437bb3e7bdb70dbca390;hb=531f1ab6f98c126f57075dbbca4884ac9728703c;hp=da5b24f715adf955dc47f02d0fe5a382d761655f;hpb=2f3812528068bc1d9f7840067f0c03d36cd47e6d;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Engine/HTTP/Restarter/Watcher.pm b/lib/Catalyst/Engine/HTTP/Restarter/Watcher.pm index da5b24f..18ce316 100644 --- a/lib/Catalyst/Engine/HTTP/Restarter/Watcher.pm +++ b/lib/Catalyst/Engine/HTTP/Restarter/Watcher.pm @@ -1,6 +1,8 @@ package Catalyst::Engine::HTTP::Restarter::Watcher; use Moose; +with 'MooseX::Emulate::Class::Accessor::Fast'; + use File::Find; use File::Modified; use File::Spec; @@ -11,7 +13,7 @@ has regex => (is => 'rw'); has modified => (is => 'rw'); has directory => (is => 'rw'); has watch_list => (is => 'rw'); -has follow_simlinks => (is => 'rw'); +has follow_symlinks => (is => 'rw'); no Moose;