From: John Napiorkowski Date: Wed, 29 Oct 2014 15:54:35 +0000 (-0500) Subject: update version X-Git-Tag: v0.34~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-Static-Simple.git;a=commitdiff_plain;h=da3e08c87513adbd6d485bb0474dc89546f8ac53 update version --- diff --git a/MYMETA.json b/MYMETA.json new file mode 100644 index 0000000..ae9fdaa --- /dev/null +++ b/MYMETA.json @@ -0,0 +1,47 @@ +{ + "abstract" : "Make serving static pages painless.", + "author" : [ + "Andy Grundman, " + ], + "dynamic_config" : 0, + "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142060", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "Catalyst-Plugin-Static-Simple", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : "6.36", + "Test::More" : "0" + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : "0" + } + }, + "runtime" : { + "requires" : { + "Catalyst::Runtime" : "5.80008", + "MIME::Types" : "2.03", + "Moose" : "0", + "MooseX::Types" : "0", + "Test::More" : "0", + "namespace::autoclean" : "0" + } + } + }, + "release_status" : "stable", + "version" : "0.32" +} diff --git a/MYMETA.yml b/MYMETA.yml new file mode 100644 index 0000000..8e8d625 --- /dev/null +++ b/MYMETA.yml @@ -0,0 +1,28 @@ +--- +abstract: 'Make serving static pages painless.' +author: + - 'Andy Grundman, ' +build_requires: + ExtUtils::MakeMaker: '6.36' + Test::More: '0' +configure_requires: + ExtUtils::MakeMaker: '0' +dynamic_config: 0 +generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142060' +license: perl +meta-spec: + url: http://module-build.sourceforge.net/META-spec-v1.4.html + version: '1.4' +name: Catalyst-Plugin-Static-Simple +no_index: + directory: + - t + - inc +requires: + Catalyst::Runtime: '5.80008' + MIME::Types: '2.03' + Moose: '0' + MooseX::Types: '0' + Test::More: '0' + namespace::autoclean: '0' +version: '0.32' diff --git a/lib/Catalyst/Plugin/Static/Simple.pm b/lib/Catalyst/Plugin/Static/Simple.pm index d8ee9c3..7aca818 100755 --- a/lib/Catalyst/Plugin/Static/Simple.pm +++ b/lib/Catalyst/Plugin/Static/Simple.pm @@ -9,7 +9,7 @@ use MooseX::Types::Moose qw/ArrayRef Str/; use Catalyst::Utils; use namespace::autoclean; -our $VERSION = '0.32'; +our $VERSION = '0.33'; has _static_file => ( is => 'rw' ); has _static_debug_message => ( is => 'rw', isa => ArrayRef[Str] );