[DRE-commits] [ruby-rack] branch master updated (b05bdce -> aa0f356)

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 change to branch master
in repository ruby-rack.

      from  b05bdce   Update changelog for 1.6.4-4 release
      adds  61a2d31   New upstream version 2.0.3
       new  708a3f1   Updated version 2.0.3 from 'upstream/2.0.3'
       new  c3fbfad   drop patches
       new  f8d9a8f   update changelog
       new  41ebaad   set minimum version to ruby-concurrent
       new  aa0f356   update docs

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 COPYING                                            |    2 +-
 HISTORY.md                                         |  162 ++-
 KNOWN-ISSUES                                       |   44 -
 README.rdoc                                        |   42 +-
 Rakefile                                           |   20 +-
 SPEC                                               |   21 +-
 contrib/rack_logo.svg                              |  275 ++--
 debian/changelog                                   |    8 +
 debian/control                                     |    5 +-
 debian/patches/series                              |    1 -
 debian/ruby-rack.docs                              |    1 -
 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/{anything.rb => an_underscore_app.rb} |    2 +-
 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/{text => quoted}                    |    8 +-
 test/multipart/{binary => rack-logo.png}           |  Bin 26667 -> 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 +-
 148 files changed, 7056 insertions(+), 6342 deletions(-)
 delete mode 100644 KNOWN-ISSUES
 delete mode 100644 lib/rack/backports/uri/common_18.rb
 delete mode 100644 lib/rack/backports/uri/common_192.rb
 delete mode 100644 lib/rack/backports/uri/common_193.rb
 rename lib/rack/{commonlogger.rb => common_logger.rb} (94%)
 rename lib/rack/{conditionalget.rb => conditional_get.rb} (100%)
 create mode 100644 lib/rack/events.rb
 delete mode 100644 lib/rack/handler/evented_mongrel.rb
 delete mode 100644 lib/rack/handler/mongrel.rb
 delete mode 100644 lib/rack/handler/swiftiplied_mongrel.rb
 create mode 100644 lib/rack/media_type.rb
 rename lib/rack/{methodoverride.rb => method_override.rb} (71%)
 rename lib/rack/{nulllogger.rb => null_logger.rb} (96%)
 create mode 100644 lib/rack/query_parser.rb
 create mode 100644 lib/rack/show_exceptions.rb
 rename lib/rack/{showstatus.rb => show_status.rb} (94%)
 delete mode 100644 lib/rack/showexceptions.rb
 delete mode 100644 lib/rack/utils/okjson.rb
 delete mode 100644 metadata.yml
 copy test/builder/{anything.rb => an_underscore_app.rb} (79%)
 delete mode 100644 test/cgi/lighttpd.errors
 create mode 100755 test/cgi/test.gz
 create mode 100644 test/helper.rb
 create mode 100644 test/multipart/filename_with_encoded_words
 create mode 100644 test/multipart/filename_with_null_byte
 create mode 100644 test/multipart/filename_with_single_quote
 copy test/multipart/{text => quoted} (81%)
 copy test/multipart/{binary => rack-logo.png} (99%)
 create mode 100644 test/multipart/unity3d_wwwform
 rename test/{spec_commonlogger.rb => spec_common_logger.rb} (62%)
 rename test/{spec_conditionalget.rb => spec_conditional_get.rb} (61%)
 create mode 100644 test/spec_events.rb
 create mode 100644 test/spec_media_type.rb
 create mode 100644 test/spec_method_override.rb
 delete mode 100644 test/spec_methodoverride.rb
 delete mode 100644 test/spec_mongrel.rb
 rename test/{spec_nulllogger.rb => spec_null_logger.rb} (69%)
 create mode 100644 test/spec_session_abstract_session_hash.rb
 rename test/{spec_showexceptions.rb => spec_show_exceptions.rb} (56%)
 rename test/{spec_showstatus.rb => spec_show_status.rb} (57%)
 create mode 100644 test/static/foo.html

-- 
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