Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.02. Changelog diff is:
Browse files Browse the repository at this point in the history
diff --git a/Changes b/Changes
index 761b564..c94023b 100644
--- a/Changes
+++ b/Changes
@@ -1,4 +1,8 @@
 Revision history for Perl extension Plack::Server::AnyEvent

+0.02  Thu Oct 29 12:38:15 PDT 2009
+        - Support psgi.streaming and condvar response for delayed response (nothingmuch)
+        - Improved error handling, memory usage and performance by not using AnyEvent::Handle (nothingmuch)
+
 0.01  Mon Oct 12 23:31:52 2009
         - original version
  • Loading branch information
miyagawa committed Oct 29, 2009
1 parent 95d9a3b commit b96466b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Changes
@@ -1,4 +1,8 @@
Revision history for Perl extension Plack::Server::AnyEvent

0.02 Thu Oct 29 12:38:15 PDT 2009
- Support psgi.streaming and condvar response for delayed response (nothingmuch)
- Improved error handling, memory usage and performance by not using AnyEvent::Handle (nothingmuch)

0.01 Mon Oct 12 23:31:52 2009
- original version
3 changes: 2 additions & 1 deletion MANIFEST
Expand Up @@ -20,13 +20,14 @@ inc/Test/Builder.pm
inc/Test/Builder/Module.pm
inc/Test/More.pm
lib/Plack/Server/AnyEvent.pm
lib/Plack/Server/AnyEvent/Writer.pm
Makefile.PL
MANIFEST This list of files
META.yml
README
t/00_compile.t
t/anyevent.t
t/anyevent_extensions.t
xt/perlcritic.t
xt/pod.t
xt/podspell.t
xt/synopsis.t
2 changes: 2 additions & 0 deletions README
Expand Up @@ -19,5 +19,7 @@ LICENSE
AUTHOR
Tokuhiro Matsuno

Yuval Kogman

Tatsuhiko Miyagawa

7 changes: 4 additions & 3 deletions t/anyevent_extensions.t
Expand Up @@ -100,10 +100,11 @@ local @Plack::Test::Suite::TEST = (

my @queue = ( "Hello, ", $env->{QUERY_STRING} );

$write->([
my $w = $write->([
200,
[ 'Content-Type' => 'text/plain', ],
])->poll_cb(sub {
[ 'Content-Type' => 'text/plain' ],
]);
$w->poll_cb(sub {
my $writer = shift;

if ( @queue ) {
Expand Down

0 comments on commit b96466b

Please sign in to comment.