Rainbows! Rack HTTP server user/dev discussion
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* what's cooking in rainbows.git (v4.5.0 soon)
@ 2013-02-26  8:24  7% Eric Wong
  0 siblings, 0 replies; 3+ results
From: Eric Wong @ 2013-02-26  8:24 UTC (permalink / raw)
  To: rainbows-talk-GrnCvJ7WPxnNLxjTenLetw

Most noticeable is rack.hijack support.

Everything works with Ruby 2.0.0 (with unicorn 4.6.2+) except
EventMachine/NeverBlock.

Eric Wong (12):
      epoll: ensure closing of pipelined clients if required
      tests: remove utee and use tee(1) instead
      tests: replace non-portable "date +%s" with ruby equivalent
      tests: "wc -c" portability for *BSDs
      tests: bump version dependencies for Isolate
      tests: "wc -l" portability for *BSDs
      hijacking support for Rack 1.5.x users
      GIT-VERSION-GEN: rewrite to manage RAINBOWS_VERSION const
      gemspec: set licenses= attribute
      bump unicorn dependency to 4.6.2+ for Ruby 2.0.0
      tests: update checks for Ruby 2.0.0
      doc: add HACKING document

Lin Jen-Shin (1):
      Add -N or --no-default-middleware option.

git clone git://bogomips.org/rainbows
_______________________________________________
Rainbows! mailing list - rainbows-talk-GrnCvJ7WPxnNLxjTenLetw@public.gmane.org
http://rubyforge.org/mailman/listinfo/rainbows-talk
Do not quote signatures (like this one) or top post when replying


^ permalink raw reply	[relevance 7%]

* [PATCH] bump unicorn dependency to 4.6.2+ for Ruby 2.0.0
       [not found]     ` <20130225130619.GA27183-yBiyF41qdooeIZ0/mPfg9Q@public.gmane.org>
@ 2013-02-26  3:19 14%   ` Eric Wong
  0 siblings, 0 replies; 3+ results
From: Eric Wong @ 2013-02-26  3:19 UTC (permalink / raw)
  To: rainbows-talk-GrnCvJ7WPxnNLxjTenLetw

Eric Wong <normalperson-rMlxZR9MS24@public.gmane.org> wrote:
> Due to this weird issue in the unicorn chunk parser C extension:
> https://bugs.ruby-lang.org/issues/7957
> I'm pretty sure rb_str_modify() should work...

This was a bug in unicorn fixed in the v4.6.2 release

ref: commit f7ee06592d7709e96f64efb5e7a9485b54415c9d in
     git://bogomips.org/unicorn.git

Rainbows! will depend on 4.6.2+

>From 95d6719722f31987c72052b000f67d99989a81c8 Mon Sep 17 00:00:00 2001
From: Eric Wong <normalperson-rMlxZR9MS24@public.gmane.org>
Date: Tue, 26 Feb 2013 03:16:46 +0000
Subject: [PATCH] bump unicorn dependency to 4.6.2+ for Ruby 2.0.0

This ensures we're compatible with the latest stable
Ruby version.
---
 rainbows.gemspec  | 4 +++-
 t/test_isolate.rb | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/rainbows.gemspec b/rainbows.gemspec
index bcbbf5b..6a906cf 100644
--- a/rainbows.gemspec
+++ b/rainbows.gemspec
@@ -28,7 +28,9 @@ Gem::Specification.new do |s|
   s.add_dependency(%q<kgio>, ['~> 2.5'])
 
   # we need Unicorn for the HTTP parser and process management
-  s.add_dependency(%q<unicorn>, ["~> 4.6"]) # 4.6.0+ supports hijacking
+  # 4.6.0+ supports hijacking, 4.6.2 fixes the chunk parser (for Ruby 2.0.0)
+  s.add_dependency(%q<unicorn>, ["~> 4.6", ">= 4.6.2"])
+
   s.add_development_dependency(%q<isolate>, "~> 3.1")
   s.add_development_dependency(%q<wrongdoc>, "~> 1.6")
 
diff --git a/t/test_isolate.rb b/t/test_isolate.rb
index 6b7fe5a..d5daa8c 100644
--- a/t/test_isolate.rb
+++ b/t/test_isolate.rb
@@ -20,7 +20,7 @@ Isolate.now!(opts) do
   gem 'rack', '1.5.2'
   gem 'kcar', '0.4.0'
   gem 'raindrops', '0.10.0'
-  gem 'unicorn', '4.6.0'
+  gem 'unicorn', '4.6.2'
 
   if engine == "ruby"
     gem 'sendfile', '1.1.0'
-- 
1.8.1.2.526.gf51a757

_______________________________________________
Rainbows! mailing list - rainbows-talk-GrnCvJ7WPxnNLxjTenLetw@public.gmane.org
http://rubyforge.org/mailman/listinfo/rainbows-talk
Do not quote signatures (like this one) or top post when replying


^ permalink raw reply related	[relevance 14%]

* [ANN] Rainbows! 0.5.0 - dependencies and compatibility
@ 2009-11-05 10:33  5% Eric Wong
  0 siblings, 0 replies; 3+ results
From: Eric Wong @ 2009-11-05 10:33 UTC (permalink / raw)
  To: ruby-talk ML, rainbows-talk

Rainbows! is a HTTP server for sleepy Rack applications.  It is based on
Unicorn, but designed to handle applications that expect long
request/response times and/or slow clients.  For Rack applications not
heavily bound by slow external network dependencies, consider Unicorn
instead as it simpler and easier to debug.

* http://rainbows.rubyforge.org/
* rainbows-talk@rubyforge.org
* git://git.bogomips.org/rainbows.git

Changes:

We depend on the just-released Unicorn 0.94.0 for the fixed
trailer handling.  As with `unicorn', the `rainbows' executable
now sets and respects ENV["RACK_ENV"].  Also small fixes and
cleanups including better FreeBSD 7.2 compatibility and
less likely to over-aggressively kill slow/idle workers
when a very low timeout is set.

Eric Wong (20):
      rev: split out heartbeat class
      bump Unicorn dependency to (consistently) pass tests
      tests: avoid single backquote in echo
      event_machine: avoid slurping when proxying
      tests: make timeout tests reliable under 1.9
      thread_pool: comment for potential SMP issue under 1.9
      Allow 'use "model"' as a string as well as symbol
      Rev model is the only user of deferred_bodies
      ev_core: use Tempfile instead of Unicorn::Util::tmpio
      ev_core: ensure quit is triggered on all errors
      rainbows: set and use process-wide ENV["RACK_ENV"]
      http_server: add one second to any requested timeout
      thread_pool: update fchmod heartbeat every second
      t0004: tighten up timeout test
      ev_core: remove Tempfile usage once again
      cleanup: remove unused t????.ru test files
      tests: staggered trailer upload test
      ensure RACK_ENV is inherited from the parent env
      t0100: more precise `expr` usage

Hopefully we'll have time to get more concurrency models
supported soon.

-- 
Eric Wong



^ permalink raw reply	[relevance 5%]

Results 1-3 of 3 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2009-11-05 10:33  5% [ANN] Rainbows! 0.5.0 - dependencies and compatibility Eric Wong
2013-02-25 13:06     Rainbows! Coolio/XEpoll failing under Ruby 2.0.0-p0 Eric Wong
     [not found]     ` <20130225130619.GA27183-yBiyF41qdooeIZ0/mPfg9Q@public.gmane.org>
2013-02-26  3:19 14%   ` [PATCH] bump unicorn dependency to 4.6.2+ for Ruby 2.0.0 Eric Wong
2013-02-26  8:24  7% what's cooking in rainbows.git (v4.5.0 soon) Eric Wong

Code repositories for project(s) associated with this public inbox

	https://yhbt.net/rainbows.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).