update version
John Napiorkowski [Wed, 29 Oct 2014 15:54:35 +0000 (10:54 -0500)]
MYMETA.json [new file with mode: 0644]
MYMETA.yml [new file with mode: 0644]
lib/Catalyst/Plugin/Static/Simple.pm

diff --git a/MYMETA.json b/MYMETA.json
new file mode 100644 (file)
index 0000000..ae9fdaa
--- /dev/null
@@ -0,0 +1,47 @@
+{
+   "abstract" : "Make serving static pages painless.",
+   "author" : [
+      "Andy Grundman, <andy@hybridized.org>"
+   ],
+   "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 (file)
index 0000000..8e8d625
--- /dev/null
@@ -0,0 +1,28 @@
+---
+abstract: 'Make serving static pages painless.'
+author:
+  - 'Andy Grundman, <andy@hybridized.org>'
+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'
index d8ee9c3..7aca818 100755 (executable)
@@ -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] );