[DRE-commits] [ruby-rack] branch master updated (154b6cc -> 0c986ce)

Praveen Arimbrathodiyil praveen at moszumanska.debian.org
Thu Aug 6 08:38:41 UTC 2015


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

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

      from  154b6cc   Rename patches
      adds  355d312   Imported Upstream version 1.6.4
       new  6665551   Merge tag 'upstream/1.6.4'
       new  42ac048   update changelog
       new  8cde17a   refresh patches
       new  9b60b45   update changelog
       new  35ba76c   remove patch 	deleted:    debian/patches/0002-Fix-unreported-FTBFS.patch
       new  0c986ce   fix series

The 6 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                                     | 355 ++++++++++++++++++++
 KNOWN-ISSUES                                   |  14 +
 README.rdoc                                    | 400 +++--------------------
 Rakefile                                       |   9 +-
 SPEC                                           | 101 +++---
 debian/changelog                               |   8 +
 debian/patches/0001-Fix-Params_Depth.patch     |  63 +---
 debian/patches/0002-Fix-unreported-FTBFS.patch |  20 --
 debian/patches/series                          |   2 -
 lib/rack.rb                                    |  15 +-
 lib/rack/auth/abstract/handler.rb              |   8 +-
 lib/rack/auth/abstract/request.rb              |   2 +-
 lib/rack/auth/basic.rb                         |   2 +-
 lib/rack/auth/digest/md5.rb                    |   2 +-
 lib/rack/auth/digest/request.rb                |   2 +-
 lib/rack/backports/uri/common_18.rb            |   2 +-
 lib/rack/builder.rb                            |  23 +-
 lib/rack/cascade.rb                            |   6 +-
 lib/rack/chunked.rb                            |  17 +-
 lib/rack/commonlogger.rb                       |  26 +-
 lib/rack/conditionalget.rb                     |  22 +-
 lib/rack/content_length.rb                     |  10 +-
 lib/rack/content_type.rb                       |   2 +-
 lib/rack/deflater.rb                           |  70 +++-
 lib/rack/directory.rb                          |  20 +-
 lib/rack/etag.rb                               |  31 +-
 lib/rack/file.rb                               |  68 ++--
 lib/rack/handler.rb                            |   6 +-
 lib/rack/handler/cgi.rb                        |   2 +-
 lib/rack/handler/fastcgi.rb                    |   7 +-
 lib/rack/handler/lsws.rb                       |   2 +-
 lib/rack/handler/mongrel.rb                    |  12 +-
 lib/rack/handler/scgi.rb                       |   9 +-
 lib/rack/handler/thin.rb                       |  10 +-
 lib/rack/handler/webrick.rb                    |  61 +++-
 lib/rack/head.rb                               |  11 +-
 lib/rack/lint.rb                               | 149 ++++++---
 lib/rack/lobster.rb                            |  15 +-
 lib/rack/methodoverride.rb                     |  22 +-
 lib/rack/mime.rb                               |  17 +-
 lib/rack/mock.rb                               |  36 ++-
 lib/rack/multipart.rb                          |   4 +-
 lib/rack/multipart/parser.rb                   | 174 +++++++---
 lib/rack/multipart/uploaded_file.rb            |   4 +-
 lib/rack/nulllogger.rb                         |  23 +-
 lib/rack/recursive.rb                          |  11 +-
 lib/rack/request.rb                            |  80 +++--
 lib/rack/response.rb                           |  19 +-
 lib/rack/runtime.rb                            |  19 +-
 lib/rack/sendfile.rb                           |  21 +-
 lib/rack/server.rb                             |  57 +++-
 lib/rack/session/abstract/id.rb                |  13 +-
 lib/rack/session/cookie.rb                     |  24 +-
 lib/rack/session/memcache.rb                   |   8 +-
 lib/rack/session/pool.rb                       |   9 +-
 lib/rack/showexceptions.rb                     |  31 +-
 lib/rack/showstatus.rb                         |   8 +-
 lib/rack/static.rb                             |  63 ++--
 lib/rack/tempfile_reaper.rb                    |  22 ++
 lib/rack/urlmap.rb                             |  24 +-
 lib/rack/utils.rb                              | 134 +++++---
 lib/rack/utils/okjson.rb                       | 181 +++++------
 metadata.yml                                   | 144 ++++-----
 rack.gemspec                                   |   8 +-
 test/cgi/lighttpd.errors                       |   1 +
 test/multipart/filename_and_no_name            |   6 +
 test/multipart/invalid_character               |   6 +
 test/multipart/three_files_three_fields        |  31 ++
 test/spec_body_proxy.rb                        |  16 +
 test/spec_builder.rb                           |  17 +-
 test/spec_cgi.rb                               |   2 +-
 test/spec_chunked.rb                           |  16 +
 test/spec_commonlogger.rb                      |  36 +++
 test/spec_content_length.rb                    |   4 +-
 test/spec_deflater.rb                          | 431 ++++++++++++++++---------
 test/spec_etag.rb                              |  13 +-
 test/spec_fastcgi.rb                           |   2 +-
 test/spec_file.rb                              |  14 +-
 test/spec_handler.rb                           |   4 +
 test/spec_head.rb                              |   2 +
 test/spec_lint.rb                              |  68 ++--
 test/spec_lobster.rb                           |   2 +-
 test/spec_methodoverride.rb                    |   7 +
 test/spec_mock.rb                              |   8 +
 test/spec_mongrel.rb                           |   2 +-
 test/spec_multipart.rb                         | 175 +++++++++-
 test/spec_request.rb                           | 165 +++++++++-
 test/spec_response.rb                          |  30 ++
 test/spec_server.rb                            |  38 ++-
 test/spec_session_cookie.rb                    |  47 ++-
 test/spec_session_memcache.rb                  |   2 +-
 test/spec_showexceptions.rb                    |  65 ++--
 test/spec_showstatus.rb                        |  19 ++
 test/spec_tempfile_reaper.rb                   |  63 ++++
 test/spec_urlmap.rb                            |  23 ++
 test/spec_utils.rb                             |  80 ++++-
 test/spec_version.rb                           |  17 +
 test/spec_webrick.rb                           |  43 ++-
 99 files changed, 2846 insertions(+), 1351 deletions(-)
 create mode 100644 HISTORY.md
 delete mode 100644 debian/patches/0002-Fix-unreported-FTBFS.patch
 create mode 100644 lib/rack/tempfile_reaper.rb
 create mode 100644 test/cgi/lighttpd.errors
 create mode 100644 test/multipart/filename_and_no_name
 create mode 100644 test/multipart/invalid_character
 create mode 100644 test/multipart/three_files_three_fields
 create mode 100644 test/spec_tempfile_reaper.rb
 create mode 100644 test/spec_version.rb

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