[DRE-commits] [ruby-httparty] branch master updated (acbd872 -> 887d3cc)

Cédric Boutillier boutil at moszumanska.debian.org
Sun May 24 22:46:23 UTC 2015


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

boutil pushed a change to branch master
in repository ruby-httparty.

      from  acbd872   prepare changelog
      adds  9d211b9   Imported Upstream version 0.13.5
       new  dddb8d0   Merge tag 'upstream/0.13.5'
       new  0399fc0   skip all old patches, add skip_failing_test.patch
       new  c2325a1   bump standards-version to 3.9.6, restrict build dep to rspec >=3
       new  4466300   add build-dep on ruby-simplecov, wrap and sort fields in debian/control
       new  0c49068   remove coverage/ dir upon cleaning
       new  016963c   prepare changelog
       new  887d3cc   delete old patches

The 7 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:
 .gitignore                                         |   1 +
 .rubocop.yml                                       |  92 ++++
 .rubocop_todo.yml                                  | 124 +++++
 .simplecov                                         |   1 +
 Gemfile                                            |  11 +-
 Guardfile                                          |   6 +-
 History                                            |  89 ++-
 README.md                                          |  38 +-
 Rakefile                                           |  12 +-
 bin/httparty                                       |  27 +-
 checksums.yaml.gz                                  | Bin 271 -> 0 bytes
 debian/changelog                                   |  13 +
 debian/control                                     |  17 +-
 debian/patches/clean_spec_helper.patch             |  24 -
 debian/patches/deactivate_failing_test.patch       |  17 -
 debian/patches/exception_spec.patch                |  46 --
 debian/patches/fix_rspec_deprecation_warning.patch | 119 -----
 debian/patches/newer_rspec.patch                   | 206 -------
 debian/patches/series                              |   7 +-
 debian/patches/skip_failing_test.patch             |  17 +
 .../patches/spec_convert_nil_to_empty_string.patch |  17 -
 debian/rules                                       |   4 +
 examples/README.md                                 |  67 +++
 examples/aaws.rb                                   |  10 +-
 examples/basic.rb                                  |  16 +-
 examples/crack.rb                                  |   4 +-
 examples/custom_parsers.rb                         |   5 +-
 examples/delicious.rb                              |  16 +-
 examples/google.rb                                 |   4 +-
 examples/headers_and_user_agents.rb                |   2 +-
 examples/logging.rb                                |  36 ++
 examples/nokogiri_html_parser.rb                   |   3 -
 examples/rescue_json.rb                            |  17 +
 examples/rubyurl.rb                                |   6 +-
 examples/stackexchange.rb                          |  24 +
 examples/tripit_sign_in.rb                         |  10 +-
 examples/twitter.rb                                |  14 +-
 examples/whoismyrep.rb                             |   2 +-
 features/command_line.feature                      |  87 ++-
 features/steps/env.rb                              |  27 +-
 features/steps/httparty_response_steps.rb          |  26 +-
 features/steps/httparty_steps.rb                   |  12 +-
 features/steps/mongrel_helper.rb                   |   4 +-
 features/steps/remote_service_steps.rb             |  24 +-
 ...eature => supports_read_timeout_option.feature} |   6 +-
 httparty.gemspec                                   |  10 +-
 lib/httparty.rb                                    | 166 +++---
 lib/httparty/connection_adapter.rb                 |  28 +-
 lib/httparty/cookie_hash.rb                        |   5 +-
 lib/httparty/core_extensions.rb                    |  32 --
 lib/httparty/hash_conversions.rb                   |  28 +-
 lib/httparty/logger/apache_logger.rb               |   4 +-
 lib/httparty/logger/logger.rb                      |   4 +-
 lib/httparty/module_inheritable_attributes.rb      |   2 +-
 lib/httparty/net_digest_auth.rb                    |  65 ++-
 lib/httparty/request.rb                            |  91 ++--
 lib/httparty/response.rb                           |  13 +-
 lib/httparty/version.rb                            |   2 +-
 metadata.yml                                       |  39 +-
 spec/httparty/connection_adapter_spec.rb           | 332 +++++++++---
 spec/httparty/cookie_hash_spec.rb                  |  58 +-
 spec/httparty/exception_spec.rb                    |  29 +-
 spec/httparty/hash_conversions_spec.rb             |  41 ++
 spec/httparty/logger/apache_logger_spec.rb         |  45 +-
 spec/httparty/logger/curl_logger_spec.rb           |   4 +-
 spec/httparty/logger/logger_spec.rb                |  14 +-
 spec/httparty/net_digest_auth_spec.rb              |  99 ++--
 spec/httparty/parser_spec.rb                       |  72 +--
 spec/httparty/request_spec.rb                      | 595 +++++++++++++++------
 spec/httparty/response_spec.rb                     | 158 +++---
 spec/httparty/ssl_spec.rb                          |  44 +-
 spec/httparty_spec.rb                              | 412 +++++++-------
 spec/spec.opts                                     |   2 -
 spec/spec_helper.rb                                |  46 +-
 spec/support/ssl_test_helper.rb                    |  12 +-
 spec/support/ssl_test_server.rb                    |  42 +-
 spec/support/stub_response.rb                      |  24 +-
 website/index.html                                 |   6 +-
 78 files changed, 2304 insertions(+), 1530 deletions(-)
 create mode 100644 .rubocop.yml
 create mode 100644 .rubocop_todo.yml
 create mode 100644 .simplecov
 delete mode 100644 checksums.yaml.gz
 delete mode 100644 debian/patches/clean_spec_helper.patch
 delete mode 100644 debian/patches/deactivate_failing_test.patch
 delete mode 100644 debian/patches/exception_spec.patch
 delete mode 100644 debian/patches/fix_rspec_deprecation_warning.patch
 delete mode 100644 debian/patches/newer_rspec.patch
 create mode 100644 debian/patches/skip_failing_test.patch
 delete mode 100644 debian/patches/spec_convert_nil_to_empty_string.patch
 create mode 100644 examples/README.md
 create mode 100644 examples/logging.rb
 create mode 100644 examples/rescue_json.rb
 create mode 100644 examples/stackexchange.rb
 copy features/{supports_timeout_option.feature => supports_read_timeout_option.feature} (72%)
 delete mode 100644 lib/httparty/core_extensions.rb
 create mode 100644 spec/httparty/hash_conversions_spec.rb
 delete mode 100644 spec/spec.opts

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



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