[DRE-commits] [ruby-excon] branch master updated (4894310 -> 6a95dff)
Micah Anderson
micah at moszumanska.debian.org
Tue Nov 15 14:51:04 UTC 2016
This is an automated email from the git hooks/post-receive script.
micah pushed a change to branch master
in repository ruby-excon.
from 4894310 Make lintian happy
adds 173fe14 New upstream version 0.54.0
new ac81a0c Merge tag 'upstream/0.54.0'
new 6a95dff Prepare new release
The 2 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:
CONTRIBUTORS.md | 36 ++-
Gemfile | 4 +-
Gemfile.lock | 28 +-
README.md | 58 ++++
Rakefile | 19 +-
benchmarks/concat_vs_interpolate.rb | 11 +-
changelog.txt | 40 +++
data/cacert.pem | 311 +++++++++++++++------
debian/changelog | 7 +
excon.gemspec | 29 +-
lib/excon.rb | 10 +-
lib/excon/connection.rb | 33 ++-
lib/excon/constants.rb | 10 +-
lib/excon/error.rb | 215 ++++++++++++++
lib/excon/errors.rb | 172 ------------
lib/excon/extensions/uri.rb | 1 +
lib/excon/headers.rb | 1 +
lib/excon/middlewares/base.rb | 1 +
lib/excon/middlewares/capture_cookies.rb | 1 +
lib/excon/middlewares/decompress.rb | 1 +
lib/excon/middlewares/escape_path.rb | 1 +
lib/excon/middlewares/expects.rb | 1 +
lib/excon/middlewares/idempotent.rb | 1 +
lib/excon/middlewares/instrumentor.rb | 1 +
lib/excon/middlewares/mock.rb | 3 +-
lib/excon/middlewares/redirect_follower.rb | 1 +
lib/excon/middlewares/response_parser.rb | 1 +
lib/excon/pretty_printer.rb | 1 +
lib/excon/response.rb | 3 +-
lib/excon/socket.rb | 5 +-
lib/excon/ssl_socket.rb | 59 ++--
lib/excon/standard_instrumentor.rb | 1 +
lib/excon/test/plugin/server/exec.rb | 23 ++
lib/excon/test/plugin/server/puma.rb | 20 ++
lib/excon/test/plugin/server/unicorn.rb | 35 +++
lib/excon/test/plugin/server/webrick.rb | 23 ++
lib/excon/test/server.rb | 106 +++++++
lib/excon/unix_socket.rb | 1 +
lib/excon/utils.rb | 11 +-
spec/excon/error_spec.rb | 137 +++++++++
spec/excon/test/server_spec.rb | 28 ++
spec/excon_spec.rb | 7 +
spec/helpers/file_path_helpers.rb | 22 ++
spec/requests/basic_spec.rb | 40 +++
spec/requests/eof_requests_spec.rb | 36 +++
spec/spec_helper.rb | 24 ++
.../support/shared_contexts/test_server_context.rb | 83 ++++++
.../shared_examples/shared_example_for_clients.rb | 207 ++++++++++++++
.../shared_example_for_streaming_clients.rb | 20 ++
.../shared_example_for_test_servers.rb | 16 ++
tests/authorization_header_tests.rb | 4 -
tests/basic_tests.rb | 29 +-
tests/error_tests.rb | 145 ++++++++++
tests/errors_tests.rb | 58 ----
tests/middlewares/instrumentation_tests.rb | 7 +-
tests/middlewares/mock_tests.rb | 11 +
tests/test_helper.rb | 4 +-
57 files changed, 1761 insertions(+), 402 deletions(-)
create mode 100644 lib/excon/error.rb
delete mode 100644 lib/excon/errors.rb
create mode 100644 lib/excon/test/plugin/server/exec.rb
create mode 100644 lib/excon/test/plugin/server/puma.rb
create mode 100644 lib/excon/test/plugin/server/unicorn.rb
create mode 100644 lib/excon/test/plugin/server/webrick.rb
create mode 100644 lib/excon/test/server.rb
create mode 100644 spec/excon/error_spec.rb
create mode 100644 spec/excon/test/server_spec.rb
create mode 100644 spec/excon_spec.rb
create mode 100644 spec/helpers/file_path_helpers.rb
create mode 100644 spec/requests/basic_spec.rb
create mode 100644 spec/requests/eof_requests_spec.rb
create mode 100644 spec/spec_helper.rb
create mode 100644 spec/support/shared_contexts/test_server_context.rb
create mode 100644 spec/support/shared_examples/shared_example_for_clients.rb
create mode 100644 spec/support/shared_examples/shared_example_for_streaming_clients.rb
create mode 100644 spec/support/shared_examples/shared_example_for_test_servers.rb
create mode 100644 tests/error_tests.rb
delete mode 100644 tests/errors_tests.rb
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-excon.git
More information about the Pkg-ruby-extras-commits
mailing list