The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 03
META.json 22
META.yml 22
bin/squatting 11
lib/Squatting.pm 11
5 files changed (This is a version diff) 69
@@ -17,6 +17,9 @@ Beyond (unreleased)
       - PSGI support by default
   * Replace Shell::Perl with something based on Eval::WithLexicals.
 
+0.83 Wed Feb 19 19:13:33 PST 2014
+  - bin/squatting :: wrapped qw() in parens to avoid syntax warning
+
 0.82 2013-08-11
   - Squatting::With::PerHostConfig was removed, because I realized
     that it couldn't work the way I wanted it, too.  By the time
@@ -4,7 +4,7 @@
       "John BEPPU <beppu@cpan.org>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.130870",
+   "generated_by" : "ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.133380",
    "license" : [
       "mit"
    ],
@@ -51,5 +51,5 @@
          "url" : "http://github.com/beppu/squatting"
       }
    },
-   "version" : "0.82"
+   "version" : "0.83"
 }
@@ -7,7 +7,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: 0
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.130870'
+generated_by: 'ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.133380'
 license: mit
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -30,7 +30,7 @@ requires:
   Test::More: 0
 resources:
   repository: http://github.com/beppu/squatting
-version: 0.82
+version: 0.83
 no_index:
     directory:
         - eg
@@ -111,7 +111,7 @@ if ($app) {
       $self->{status}      = 200;
       $self;
     };
-    foreach my $method qw(get post put delete) {
+    foreach my $method (qw(get post put delete)) {
       *{$app."::$method" } = sub {
         my $cc = ${$app."::Controllers::C"}{$_[1]}->clone->mock_init(@_[2..$#_]);
         $cc->env->{REQUEST_METHOD} = $method;
@@ -11,7 +11,7 @@ use URI::Escape;
 use Carp;
 use Data::Dump 'pp';
 
-our $VERSION = '0.82';
+our $VERSION = '0.83';
 
 require Squatting::Controller;
 require Squatting::View;