Skip to content

Commit

Permalink
Update ruby-http to 1.0.1.
Browse files Browse the repository at this point in the history
## 1.0.1 (2015-12-27)

* [#283](httprb/http#283):
  Use io/wait on supported platforms.
  ([@tarcieri])

## 1.0.0 (2015-12-25)

* [#265](httprb/http#265):
  Remove deprecations ([@tarcieri]):
  - HTTP::Chainable#with_follow (use #follow)
  - HTTP::Chainable#with, #with_headers (use #headers)
  - HTTP::Chainable#auth(:basic, ...) (use #basic_auth)
  - HTTP::Chainable#default_headers (use #default_options[:headers])
  - HTTP::Headers#append (use #add)
  - HTTP::Options#[] hash-like API deprecated in favor of explicit methods
  - HTTP::Request#request_header (use #headline)
  - HTTP::Response::STATUS_CODES (use HTTP::Status::REASONS)
  - HTTP::Response::SYMBOL_TO_STATUS_CODE (no replacement)
  - HTTP::Response#status_code (use #status or #code)
  - HTTP::Response::Status#symbolize (use #to_sym)

* [#269](httprb/http#273):
  Close connection in case of error during request.
  ([@ixti])

* [#271](httprb/http#273):
  High-level exception wrappers for low-level I/O errors.
  ([@ixti])

* [#273](httprb/http#273):
  Add encoding option.
  ([@Connorhd])

* [#275](httprb/http#273):
  Support for disabling Nagle's algorithm with `HTTP.nodelay`.
  ([@nerdrew])

* [#276](httprb/http#276)
  Use Encoding::BINARY as the default encoding for HTTP::Response::Body.
  ([@tarcieri])

* [#278](httprb/http#278)
  Use an options hash for HTTP::Request initializer API.
  ([@ixti])

* [#279](httprb/http#279)
  Send headers and body in one write if possible.
  This avoids a pathological case in Nagle's algorithm.
  ([@tarcieri])

* [#281](httprb/http#281)
  Remove legacy 'Http' constant alias to 'HTTP'.
  ([@tarcieri])
  • Loading branch information
taca committed Jan 3, 2016
1 parent 72e06de commit dcb4c0b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions www/ruby-http/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.7 2015/10/04 13:49:30 taca Exp $
# $NetBSD: Makefile,v 1.8 2016/01/03 08:00:59 taca Exp $
#

DISTNAME= http-0.9.8
DISTNAME= http-1.0.1
CATEGORIES= www

MAINTAINER= tsutsui@NetBSD.org
Expand Down
3 changes: 1 addition & 2 deletions www/ruby-http/PLIST
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.7 2015/10/04 13:49:30 taca Exp $
@comment $NetBSD: PLIST,v 1.8 2016/01/03 08:00:59 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/.coveralls.yml
${GEM_LIBDIR}/.gitignore
Expand All @@ -13,7 +13,6 @@ ${GEM_LIBDIR}/Guardfile
${GEM_LIBDIR}/LICENSE.txt
${GEM_LIBDIR}/README.md
${GEM_LIBDIR}/Rakefile
${GEM_LIBDIR}/examples/parallel_requests_with_celluloid.rb
${GEM_LIBDIR}/http.gemspec
${GEM_LIBDIR}/lib/http.rb
${GEM_LIBDIR}/lib/http/chainable.rb
Expand Down
10 changes: 5 additions & 5 deletions www/ruby-http/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.8 2015/11/04 02:47:34 agc Exp $
$NetBSD: distinfo,v 1.9 2016/01/03 08:00:59 taca Exp $

SHA1 (http-0.9.8.gem) = a0de8b20e9801926dc25f40dffe5108be322c3e8
RMD160 (http-0.9.8.gem) = 5b6b7ebe1a168c2402112c2ed6d62b1996dded41
SHA512 (http-0.9.8.gem) = bb89147a3c28ebd75d2453e51c0c422557907e055b9a20a560b803bc64edfcdfe96e997ff225a26c9ca278211b0f70faaccf2d18ce2cdc9fd95bc4048093ef68
Size (http-0.9.8.gem) = 66560 bytes
SHA1 (http-1.0.1.gem) = 85a7312387ca6ad7d2807e59f19a06e2c488ac1b
RMD160 (http-1.0.1.gem) = 8defaab885272ab67a4439d80693a3f6624348c8
SHA512 (http-1.0.1.gem) = 7012b714379c5328a25717533c325cfafc0137c37d248c98f1bd5676e3d1d12cafc254c1ac4d445f30ea6ffe23884a74104d4417e699cf190ad1535712280dbb
Size (http-1.0.1.gem) = 62464 bytes

0 comments on commit dcb4c0b

Please sign in to comment.