summaryrefslogtreecommitdiff
path: root/www/ruby-rack
AgeCommit message (Collapse)AuthorFilesLines
2011-11-24Update ruby-rack pacakge to 1.2.4.taca2-6/+6
* September 16, 2011: Eighteenth public release 1.2.4 * Fix a bug with MRI regex engine to prevent XSS by malformed unicode
2011-06-11Update ruby-rack package to 1.2.3, latest 1.2.x series.taca3-7/+10
Changes are unknown.
2011-03-23Update ruby-rack package to 1.2.2.taca2-6/+6
== Changes * March 13th, 2011: Twelfth public release 1.2.2/1.1.2. * Security fix in Rack::Auth::Digest::MD5: when authenticator returned nil, permission was granted on empty password.
2010-09-10Update www/ruby-rack to 1.2.1.taca3-57/+73
* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. * Add LICENSE. * Remove default value of GEM_BUILD. == Changes * June 13th, 2010: Tenth public release 1.2.0. * Removed Camping adapter: Camping 2.0 supports Rack as-is * Removed parsing of quoted values * Add Request.trace? and Request.options? * Add mime-type for .webm and .htc * Fix HTTP_X_FORWARDED_FOR * Various multipart fixes * Switch test suite to bacon * January 3rd, 2009: Ninth public release 1.1.0. * Moved Auth::OpenID to rack-contrib. * SPEC change that relaxes Lint slightly to allow subclasses of the required types * SPEC change to document rack.input binary mode in greator detail * SPEC define optional rack.logger specification * File servers support X-Cascade header * Imported Config middleware * Imported ETag middleware * Imported Runtime middleware * Imported Sendfile middleware * New Logger and NullLogger middlewares * Added mime type for .ogv and .manifest. * Don't squeeze PATH_INFO slashes * Use Content-Type to determine POST params parsing * Update Rack::Utils::HTTP_STATUS_CODES hash * Add status code lookup utility * Response should call #to_i on the status * Add Request#user_agent * Request#host knows about forwared host * Return an empty string for Request#host if HTTP_HOST and SERVER_NAME are both missing * Allow MockRequest to accept hash params * Optimizations to HeaderHash * Refactored rackup into Rack::Server * Added Utils.build_nested_query to complement Utils.parse_nested_query * Added Utils::Multipart.build_multipart to complement Utils::Multipart.parse_multipart * Extracted set and delete cookie helpers into Utils so they can be used outside Response * Extract parse_query and parse_multipart in Request so subclasses can change their behavior * Enforce binary encoding in RewindableInput * Set correct external_encoding for handlers that don't use RewindableInput
2009-12-02Update ruby-rack to 1.0.1.fhajny3-7/+8
Changes since 1.0.0: * Bump remainder of rack.versions. * Support the pure Ruby FCGI implementation. * Fix for form names containing "=": split first then unescape components * Fixes the handling of the filename parameter with semicolons in names. * Add anchor to nested params parsing regexp to prevent stack overflows * Use more compatible gzip write api instead of "<<". * Make sure that Reloader doesn't break when executed via ruby -e * Make sure WEBrick respects the :Host option * Many Ruby 1.9 fixes.
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg1-20/+1
2009-06-14Update ruby-rack to 1.0.0.minskim3-8/+40
Changes since 0.4: * Rack is now managed by the Rack Core Team. * Rack::Lint is stricter and follows the HTTP RFCs more closely. * Added ConditionalGet middleware. * Added ContentLength middleware. * Added Deflater middleware. * Added Head middleware. * Added MethodOverride middleware. * Rack::Mime now provides popular MIME-types and their extension. * Mongrel Header now streams. * Added Thin handler. * Official support for swiftiplied Mongrel. * Secure cookies. * Made HeaderHash case-preserving. * Many bugfixes and small improvements. * Fix directory traversal exploits in Rack::File and Rack::Directory. * SPEC changes. * New middleware Rack::Lock. * New middleware Rack::ContentType. * Rack::Reloader has been rewritten. * Major update to Rack::Auth::OpenID. * Support for nested parameter parsing in Rack::Response. * Support for redirects in Rack::Response. * HttpOnly cookie support in Rack::Response. * The Rakefile has been rewritten. * Many bugfixes and small improvements.
2008-09-15Update ruby-rack package to 0.4.0.taca3-7/+22
== Future specification changes PLEASE NOTE: In versions of Rack LATER than 0.4, the following changes will be commited to the Rack specification: * 1xx, 204 and 304 status codes MUST not contain a Content-Type. * A valid Content-Length header MUST be provided for non 1xx, 204 and 304 responses with a Transfer-Encoding of "identity" (default). The Content-Length MUST be the same as the sum of the byte-sizes of the chunks. * The REQUEST_METHOD may be any HTTP token. Internal Rack modules have been updated to follow this behavior, but the Rack 0.4 Lint does NOT check it yet for compatibility reasons. Please update your libraries accordingly. == Changes * August 21st, 2008: Fourth public release 0.4. * New middleware, Rack::Deflater, by Christoffer Sawicki. * OpenID authentication now needs ruby-openid 2. * New Memcache sessions, by blink. * Explicit EventedMongrel handler, by Joshua Peek. * Rack::Reloader is not loaded in rackup development mode. * rackup can daemonize with -D. * Many bugfixes, especially for pool sessions, URLMap, thread safety and tempfile handling. * Improved tests. * Rack moved to Git.
2008-04-04Initial import of ruby18-rack-0.3.0 as www/ruby-rack.jlam4-0/+117
Rack provides a minimal, modular and adaptable interface for developing web applications in Ruby. By wrapping HTTP requests and responses in the simplest way possible, it unifies and distills the API for web servers, web frameworks, and software in between (the so-called middleware) into a single method call.