[DRE-commits] [ruby-http] 01/04: Merge tag 'upstream/0.9.1'

Jonas Genannt genannt at moszumanska.debian.org
Sun Aug 16 18:33:27 UTC 2015


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

genannt pushed a commit to branch master
in repository ruby-http.

commit e5df74a4a463edb610dfeb0bf29291ae0dd48f67
Merge: 2ea0599 cd3c43f
Author: Jonas Genannt <jonas at brachium-system.net>
Date:   Sun Aug 16 20:27:45 2015 +0200

    Merge tag 'upstream/0.9.1'
    
    Upstream version 0.9.1
    
    # gpg: Signature made Sun 16 Aug 2015 08:27:40 PM CEST using RSA key ID 016CFFD0
    # gpg: Good signature from "Jonas Genannt <jonas at brachium-system.net>"
    # gpg:                 aka "Jonas Genannt <jonas.genannt at capi2name.de>"
    # gpg:                 aka "Jonas Genannt <genannt at debian.org>"
    
    * tag 'upstream/0.9.1':
      Imported Upstream version 0.9.1

 .rspec                                             |   2 +-
 .rubocop.yml                                       | 144 +++----
 .travis.yml                                        |  12 +-
 .yardopts                                          |   2 +
 CHANGES.md                                         | 206 ++++++++-
 CONTRIBUTING.md                                    |  25 ++
 Gemfile                                            |  45 +-
 Guardfile                                          |  19 +-
 LICENSE.txt                                        |   2 +-
 README.md                                          | 277 ++++++++----
 Rakefile                                           |  56 ++-
 checksums.yaml.gz                                  | Bin 268 -> 0 bytes
 examples/parallel_requests_with_celluloid.rb       |   6 +-
 http.gemspec                                       |  27 +-
 lib/http.rb                                        |  27 +-
 lib/http/authorization_header.rb                   |  37 --
 lib/http/authorization_header/basic_auth.rb        |  24 --
 lib/http/authorization_header/bearer_token.rb      |  28 --
 lib/http/backports.rb                              |   2 -
 lib/http/backports/base64.rb                       |   6 -
 lib/http/backports/uri.rb                          | 131 ------
 lib/http/chainable.rb                              | 173 ++++++--
 lib/http/client.rb                                 | 189 +++++----
 lib/http/connection.rb                             | 216 ++++++++++
 lib/http/content_type.rb                           |   4 +-
 lib/http/errors.rb                                 |   8 +-
 lib/http/headers.rb                                | 143 +++++--
 lib/http/headers/known.rb                          |  78 ++++
 lib/http/headers/mixin.rb                          |  25 +-
 lib/http/mime_type.rb                              |   4 +-
 lib/http/mime_type/adapter.rb                      |   6 +-
 lib/http/mime_type/json.rb                         |   8 +-
 lib/http/options.rb                                | 166 ++++----
 lib/http/redirector.rb                             |  94 +++--
 lib/http/request.rb                                | 127 +++---
 lib/http/request/writer.rb                         |  40 +-
 lib/http/response.rb                               | 141 +++----
 lib/http/response/body.rb                          |  24 +-
 lib/http/response/parser.rb                        |   2 +-
 lib/http/response/status.rb                        | 122 ++++++
 lib/http/response/status/reasons.rb                |  78 ++++
 lib/http/timeout/global.rb                         | 120 ++++++
 lib/http/timeout/null.rb                           |  75 ++++
 lib/http/timeout/per_operation.rb                  |  81 ++++
 lib/http/uri.rb                                    |  23 +
 lib/http/version.rb                                |   2 +-
 logo.png                                           | Bin 29762 -> 13829 bytes
 metadata.yml                                       | 154 ++++---
 spec/http/authorization_header/basic_auth_spec.rb  |  29 --
 .../http/authorization_header/bearer_token_spec.rb |  36 --
 spec/http/authorization_header_spec.rb             |  41 --
 spec/http/backports/base64_spec.rb                 |  13 -
 spec/http/backports/uri_spec.rb                    |   9 -
 spec/http/client_spec.rb                           | 202 ---------
 spec/http/content_type_spec.rb                     |  47 ---
 spec/http/headers_spec.rb                          | 417 ------------------
 spec/http/options/body_spec.rb                     |  17 -
 spec/http/options/headers_spec.rb                  |  22 -
 spec/http/options/merge_spec.rb                    |  51 ---
 spec/http/options/new_spec.rb                      |  30 --
 spec/http/options/proxy_spec.rb                    |  21 -
 spec/http/redirector_spec.rb                       | 100 -----
 spec/http/request/writer_spec.rb                   |  43 --
 spec/http/request_spec.rb                          | 147 -------
 spec/http/response/body_spec.rb                    |  42 --
 spec/http/response_spec.rb                         | 100 -----
 spec/http_spec.rb                                  | 136 ------
 spec/lib/http/client_spec.rb                       | 282 +++++++++++++
 spec/lib/http/content_type_spec.rb                 |  45 ++
 spec/{ => lib}/http/headers/mixin_spec.rb          |  20 +-
 spec/lib/http/headers_spec.rb                      | 467 +++++++++++++++++++++
 spec/lib/http/options/body_spec.rb                 |  13 +
 spec/{ => lib}/http/options/form_spec.rb           |  10 +-
 spec/lib/http/options/headers_spec.rb              |  18 +
 spec/{ => lib}/http/options/json_spec.rb           |  10 +-
 spec/lib/http/options/merge_spec.rb                |  60 +++
 spec/lib/http/options/new_spec.rb                  |  28 ++
 spec/lib/http/options/proxy_spec.rb                |  18 +
 spec/{ => lib}/http/options_spec.rb                |   8 +-
 spec/lib/http/redirector_spec.rb                   | 379 +++++++++++++++++
 spec/lib/http/request/writer_spec.rb               |  89 ++++
 spec/lib/http/request_spec.rb                      | 146 +++++++
 spec/lib/http/response/body_spec.rb                |  40 ++
 spec/lib/http/response/status_spec.rb              | 131 ++++++
 spec/lib/http/response_spec.rb                     | 132 ++++++
 spec/lib/http_spec.rb                              | 315 ++++++++++++++
 spec/spec_helper.rb                                | 102 ++++-
 spec/support/black_hole.rb                         |   5 +
 spec/support/capture_warning.rb                    |   8 +
 spec/support/connection_reuse_shared.rb            |  95 +++++
 spec/support/dummy_server.rb                       |  41 ++
 spec/support/dummy_server/servlet.rb               | 137 ++++++
 spec/support/example_server.rb                     | 102 -----
 spec/support/http_handling_shared.rb               | 199 +++++++++
 spec/support/proxy_server.rb                       |  56 +--
 spec/support/servers/config.rb                     |   9 +
 spec/support/servers/runner.rb                     |  17 +
 spec/support/ssl_helper.rb                         | 102 +++++
 98 files changed, 5091 insertions(+), 2677 deletions(-)

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



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