Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use does for File::ChangeNotify::Watcher attr constraint in Restarter #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
This file documents the revision history for Perl extension Catalyst-Devel.

- Typo fixes. RT#87103
- Require File::ChangeNotify 0.27+ to work around issues with earlier
File::ChangeNotify versions and Moose 2.2000+ (RT #120040).

1.39 2013-06-14 12:44:17
- Write =encoding utf8 into generated Pod files so that things
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ requires 'Catalyst::Action::RenderView' => '0.10';
requires 'Catalyst::Plugin::Static::Simple' => '0.28';
requires 'Catalyst::Plugin::ConfigLoader' => '0.30';
requires 'Config::General' => '2.42'; # as of 1.07, we use .conf and not .yaml
requires 'File::ChangeNotify' => '0.07';
requires 'File::ChangeNotify' => '0.27';
requires 'File::Copy::Recursive';
requires 'Path::Class' => '0.09';
requires 'Template' => '2.14';
Expand Down
4 changes: 2 additions & 2 deletions lib/Catalyst/Restarter.pm
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ has argv => (
);

has _watcher => (
is => 'rw',
isa => 'File::ChangeNotify::Watcher',
is => 'rw',
does => 'File::ChangeNotify::Watcher',
);

has _filter => (
Expand Down