Make everything which used to inherit CAF use the MX::Emulate::CAF role + test
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / HTTP / Restarter / Watcher.pm
index da5b24f..18ce316 100644 (file)
@@ -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;