| ryah ( @ 2008-08-19 09:57:00 |
| Entry tags: | ebb, programming |
ebb version 0.3
This release includes a rather large refactoring of the internals. In particular, the core of Ebb was extracted and expanded into a separate C library called libebb.
New features in Ebb 0.3 are
- support for chunked requests (transparent)
- support for chunked responses (set the header "Transfer-Encoding: chunked")
- support for HTTPS. Use by supplying two extra parameters to the options hash
Ebb::start_server(SimpleApp.new, :port => 4001, :ssl_cert => "/home/ryan/projects/ebb/benchmark/ca-cert.pem", :ssl_key => "/home/ryan/projects/ebb/benchmark/ca-key.pem" )to use HTTPS you must have GnuTLS installed. This is optional. - support for pipelined requests
- no longer dependent on glib
gem install ebb
update 0.3.1 fix small bug with chunked responses
update 0.3.2 add hack to work with Merb (who doesn't send Content-Length headers even though she should).