X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FPlugin%2FStatic%2FSimple.pm;h=305dd61aeeb803f00a7f478c517a62ea602ef9b2;hb=46f893f9bae5216bb10b5c5605962987e1254132;hp=c7708e6f851b932ebcb24d600d7fc94b9592fd42;hpb=df92d92d3af4d775f6bd2c13774b49655812dec8;p=catagits%2FCatalyst-Plugin-Static-Simple.git diff --git a/lib/Catalyst/Plugin/Static/Simple.pm b/lib/Catalyst/Plugin/Static/Simple.pm index c7708e6..305dd61 100644 --- a/lib/Catalyst/Plugin/Static/Simple.pm +++ b/lib/Catalyst/Plugin/Static/Simple.pm @@ -5,12 +5,13 @@ use File::stat; use File::Spec (); use IO::File (); use MIME::Types (); +use MooseX::Types::Moose qw/ArrayRef Str/; use namespace::autoclean; -our $VERSION = '0.27'; +our $VERSION = '0.28'; has _static_file => ( is => 'rw' ); -has _static_debug_message => ( is => 'rw', isa => 'Str' ); +has _static_debug_message => ( is => 'rw', isa => ArrayRef[Str] ); before prepare_action => sub { my $c = shift;