[Bps-public-commit] HTTP-Server-Simple-Mason branch, master, updated. f2e44404d787f161d81dfcf8fa015175810ae401

jesse jesse at bestpractical.com
Tue Jul 7 17:05:25 EDT 2009


The branch, master has been updated
       via  f2e44404d787f161d81dfcf8fa015175810ae401 (commit)
       via  915786ef719e5a2be8315490719bc90d74bfae21 (commit)
       via  c21367beb997363e7dde85fa3300153f7d9abe6d (commit)
      from  b6da42c1f46d32ffac06a560267af98f9e691cbc (commit)

Summary of changes:
 .shipit                         |   10 ++++++++++
 Changes                         |    5 ++++-
 lib/HTTP/Server/Simple/Mason.pm |    2 +-
 t/04unhandlederrors.t           |    2 +-
 4 files changed, 16 insertions(+), 3 deletions(-)
 create mode 100644 .shipit

- Log -----------------------------------------------------------------
commit c21367beb997363e7dde85fa3300153f7d9abe6d
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Tue Jul 7 17:01:09 2009 -0400

    test update. Looks like LWP::Simple now returns undef on error instead
    of ''

diff --git a/t/04unhandlederrors.t b/t/04unhandlederrors.t
index cc1b720..2cb49df 100644
--- a/t/04unhandlederrors.t
+++ b/t/04unhandlederrors.t
@@ -16,7 +16,7 @@ my $pid=$s->background();
 like($pid, qr/^-?\d+$/,'pid is numeric');
 sleep(1);
 my $content=LWP::Simple::get("http://localhost:13432");
-is($content,'',"Returns an empty page");
+ok(!$content,"Returns an empty page");
 is(kill(9,$pid),1,'Signaled 1 process successfully');
 
 

commit 915786ef719e5a2be8315490719bc90d74bfae21
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Tue Jul 7 17:01:27 2009 -0400

    added a .shipit

diff --git a/.shipit b/.shipit
new file mode 100644
index 0000000..44c02c1
--- /dev/null
+++ b/.shipit
@@ -0,0 +1,10 @@
+# auto-generated shipit config file.
+steps = FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN, Twitter
+
+git.tagpattern = %v
+twitter.config = ~/.twitterrc
+
+# svn.tagpattern = MyProj-%v
+# svn.tagpattern = http://code.example.com/svn/tags/MyProj-%v
+
+# CheckChangeLog.files = ChangeLog, MyProj.CHANGES

commit f2e44404d787f161d81dfcf8fa015175810ae401
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Tue Jul 7 17:02:20 2009 -0400

    Checking in changes prior to tagging of version 0.12.  Changelog diff is:
    
    diff --git a/Changes b/Changes
    index e2c6023..cca0720 100644
    --- a/Changes
    +++ b/Changes
    @@ -1,4 +1,7 @@
    -* 0.11 Mon Dec  1 09:45:52 EST 2008
    +0.12 Tue Jul  7 17:01:55 EDT 2009
    +    * Test update. Looks like LWP::Simple now returns undef instead of '' on fail
    +
    +0.11 Mon Dec  1 09:45:52 EST 2008
         * The previous release didn't actually fix 30113
    
     0.10 Fri Oct 19 12:37:48 BST 2007

diff --git a/Changes b/Changes
index e2c6023..cca0720 100644
--- a/Changes
+++ b/Changes
@@ -1,4 +1,7 @@
-* 0.11 Mon Dec  1 09:45:52 EST 2008
+0.12 Tue Jul  7 17:01:55 EDT 2009
+    * Test update. Looks like LWP::Simple now returns undef instead of '' on fail
+
+0.11 Mon Dec  1 09:45:52 EST 2008
     * The previous release didn't actually fix 30113
 
 0.10 Fri Oct 19 12:37:48 BST 2007
diff --git a/lib/HTTP/Server/Simple/Mason.pm b/lib/HTTP/Server/Simple/Mason.pm
index 072e07f..d087b70 100644
--- a/lib/HTTP/Server/Simple/Mason.pm
+++ b/lib/HTTP/Server/Simple/Mason.pm
@@ -1,7 +1,7 @@
 package HTTP::Server::Simple::Mason;
 use base qw/HTTP::Server::Simple::CGI/;
 use strict;
-our $VERSION = '0.11';
+our $VERSION = '0.12';
 
 =head1 NAME
 

-----------------------------------------------------------------------



More information about the Bps-public-commit mailing list