[DRE-commits] [ruby-rack] 01/05: Updated version 2.0.3 from 'upstream/2.0.3'

Praveen Arimbrathodiyil praveen at moszumanska.debian.org
Mon Aug 14 10:26:53 UTC 2017


This is an automated email from the git hooks/post-receive script.

praveen pushed a commit to branch master
in repository ruby-rack.

commit 708a3f1e276d27ad2fc0be70d2b8df625d545ad6
Merge: b05bdce 61a2d31
Author: Pirate Praveen <praveen at debian.org>
Date:   Mon Aug 14 15:28:28 2017 +0530

    Updated version 2.0.3 from 'upstream/2.0.3'
    
    with Debian dir 760125e73a009676b89839a840eb4560b0707b8e

 COPYING                                            |    2 +-
 HISTORY.md                                         |  162 ++-
 KNOWN-ISSUES                                       |   44 -
 README.rdoc                                        |   42 +-
 Rakefile                                           |   20 +-
 SPEC                                               |   21 +-
 contrib/rack_logo.svg                              |  275 ++--
 example/protectedlobster.rb                        |    2 +-
 example/protectedlobster.ru                        |    2 +-
 lib/rack.rb                                        |   91 +-
 lib/rack/auth/abstract/request.rb                  |    6 +-
 lib/rack/auth/digest/params.rb                     |    5 +-
 lib/rack/auth/digest/request.rb                    |    2 +-
 lib/rack/backports/uri/common_18.rb                |   56 -
 lib/rack/backports/uri/common_192.rb               |   52 -
 lib/rack/backports/uri/common_193.rb               |   29 -
 lib/rack/body_proxy.rb                             |   23 +-
 lib/rack/builder.rb                                |    6 +-
 lib/rack/chunked.rb                                |   10 +-
 lib/rack/{commonlogger.rb => common_logger.rb}     |    6 +-
 lib/rack/{conditionalget.rb => conditional_get.rb} |    0
 lib/rack/content_length.rb                         |    4 +-
 lib/rack/deflater.rb                               |   43 +-
 lib/rack/directory.rb                              |  120 +-
 lib/rack/etag.rb                                   |    7 +-
 lib/rack/events.rb                                 |  154 +++
 lib/rack/file.rb                                   |  104 +-
 lib/rack/handler.rb                                |   14 +-
 lib/rack/handler/cgi.rb                            |   31 +-
 lib/rack/handler/evented_mongrel.rb                |    8 -
 lib/rack/handler/fastcgi.rb                        |   27 +-
 lib/rack/handler/lsws.rb                           |   22 +-
 lib/rack/handler/mongrel.rb                        |  106 --
 lib/rack/handler/scgi.rb                           |   30 +-
 lib/rack/handler/swiftiplied_mongrel.rb            |    8 -
 lib/rack/handler/thin.rb                           |    3 +
 lib/rack/handler/webrick.rb                        |   50 +-
 lib/rack/head.rb                                   |   32 +-
 lib/rack/lint.rb                                   |   80 +-
 lib/rack/lobster.rb                                |    2 +-
 lib/rack/lock.rb                                   |   16 +-
 lib/rack/logger.rb                                 |    4 +-
 lib/rack/media_type.rb                             |   38 +
 lib/rack/{methodoverride.rb => method_override.rb} |    9 +-
 lib/rack/mime.rb                                   |   23 +-
 lib/rack/mock.rb                                   |   74 +-
 lib/rack/multipart.rb                              |   41 +-
 lib/rack/multipart/generator.rb                    |   10 +-
 lib/rack/multipart/parser.rb                       |  429 +++---
 lib/rack/multipart/uploaded_file.rb                |    3 +-
 lib/rack/{nulllogger.rb => null_logger.rb}         |    2 +-
 lib/rack/query_parser.rb                           |  192 +++
 lib/rack/recursive.rb                              |   16 +-
 lib/rack/reloader.rb                               |    3 +-
 lib/rack/request.rb                                |  687 +++++-----
 lib/rack/response.rb                               |  187 ++-
 lib/rack/rewindable_input.rb                       |   13 +-
 lib/rack/runtime.rb                                |   28 +-
 lib/rack/sendfile.rb                               |   12 +-
 lib/rack/server.rb                                 |   56 +-
 lib/rack/session/abstract/id.rb                    |  196 +--
 lib/rack/session/cookie.rb                         |   43 +-
 lib/rack/session/memcache.rb                       |    4 +-
 lib/rack/session/pool.rb                           |   18 +-
 lib/rack/show_exceptions.rb                        |  386 ++++++
 lib/rack/{showstatus.rb => show_status.rb}         |    6 +-
 lib/rack/showexceptions.rb                         |  387 ------
 lib/rack/static.rb                                 |   35 +-
 lib/rack/tempfile_reaper.rb                        |    4 +-
 lib/rack/urlmap.rb                                 |   29 +-
 lib/rack/utils.rb                                  |  358 +++--
 lib/rack/utils/okjson.rb                           |  600 ---------
 metadata.yml                                       |  312 -----
 rack.gemspec                                       |   12 +-
 test/builder/an_underscore_app.rb                  |    5 +
 test/builder/options.ru                            |    2 +-
 test/cgi/lighttpd.errors                           |    1 -
 test/cgi/test.fcgi                                 |    1 +
 test/cgi/test.gz                                   |  Bin 0 -> 165 bytes
 test/helper.rb                                     |   34 +
 test/multipart/filename_with_encoded_words         |    7 +
 test/multipart/filename_with_null_byte             |    7 +
 test/multipart/filename_with_single_quote          |    7 +
 test/multipart/quoted                              |   15 +
 test/multipart/rack-logo.png                       |  Bin 0 -> 26473 bytes
 test/multipart/unity3d_wwwform                     |   11 +
 .../rack/handler/registering_myself.rb             |    2 +-
 test/spec_auth_basic.rb                            |   46 +-
 test/spec_auth_digest.rb                           |   93 +-
 test/spec_body_proxy.rb                            |   54 +-
 test/spec_builder.rb                               |   92 +-
 test/spec_cascade.rb                               |   46 +-
 test/spec_cgi.rb                                   |  116 +-
 test/spec_chunked.rb                               |   72 +-
 ...{spec_commonlogger.rb => spec_common_logger.rb} |   44 +-
 ...c_conditionalget.rb => spec_conditional_get.rb} |   57 +-
 test/spec_config.rb                                |    5 +-
 test/spec_content_length.rb                        |   35 +-
 test/spec_content_type.rb                          |   25 +-
 test/spec_deflater.rb                              |  134 +-
 test/spec_directory.rb                             |  114 +-
 test/spec_etag.rb                                  |   63 +-
 test/spec_events.rb                                |  133 ++
 test/spec_fastcgi.rb                               |  122 +-
 test/spec_file.rb                                  |  197 +--
 test/spec_handler.rb                               |   40 +-
 test/spec_head.rb                                  |   29 +-
 test/spec_lint.rb                                  |  363 +++---
 test/spec_lobster.rb                               |   47 +-
 test/spec_lock.rb                                  |  108 +-
 test/spec_logger.rb                                |    7 +-
 test/spec_media_type.rb                            |   42 +
 test/spec_method_override.rb                       |   96 ++
 test/spec_methodoverride.rb                        |   82 --
 test/spec_mime.rb                                  |   38 +-
 test/spec_mock.rb                                  |  344 +++--
 test/spec_mongrel.rb                               |  182 ---
 test/spec_multipart.rb                             |  520 +++++---
 test/{spec_nulllogger.rb => spec_null_logger.rb}   |    9 +-
 test/spec_recursive.rb                             |   31 +-
 test/spec_request.rb                               | 1370 +++++++++++---------
 test/spec_response.rb                              |  369 ++++--
 test/spec_rewindable_input.rb                      |   90 +-
 test/spec_runtime.rb                               |   21 +-
 test/spec_sendfile.rb                              |   65 +-
 test/spec_server.rb                                |  130 +-
 test/spec_session_abstract_id.rb                   |   44 +-
 test/spec_session_abstract_session_hash.rb         |   45 +
 test/spec_session_cookie.rb                        |  166 ++-
 test/spec_session_memcache.rb                      |  121 +-
 test/spec_session_pool.rb                          |   89 +-
 ...c_showexceptions.rb => spec_show_exceptions.rb} |   49 +-
 test/{spec_showstatus.rb => spec_show_status.rb}   |   71 +-
 test/spec_static.rb                                |  103 +-
 test/spec_tempfile_reaper.rb                       |   21 +-
 test/spec_thin.rb                                  |  105 +-
 test/spec_urlmap.rb                                |  157 +--
 test/spec_utils.rb                                 |  787 ++++++-----
 test/spec_version.rb                               |   10 +-
 test/spec_webrick.rb                               |  161 ++-
 test/static/foo.html                               |    1 +
 test/testrequest.rb                                |    2 +-
 .../rack/handler/unregistered.rb                   |    2 +-
 .../rack/handler/unregistered_long_one.rb          |    2 +-
 144 files changed, 7060 insertions(+), 6333 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-rack.git



More information about the Pkg-ruby-extras-commits mailing list