pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/ruby-http Update ruby-http to 0.6.1.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/3b118cebe896
branches:  trunk
changeset: 635205:3b118cebe896
user:      tsutsui <tsutsui%pkgsrc.org@localhost>
date:      Sun Jun 01 16:36:48 2014 +0000

description:
Update ruby-http to 0.6.1.

Changes noted in Changes.md:

0.6.1 (2014-05-07)
------------------

* Fix request `Content-Length` calculation for Unicode (@challengeechallengee)
* Add `Response#flush` (@ixti)
* Fix `Response::Body#readpartial` default size (@hannesg, @ixti)
* Add missing `CRLF` for chunked bodies (@hannesg)
* Fix forgotten CGI require (@ixti)
* Improve README (@tarcieri)

0.6.0 (2014-04-04)
------------------

* Rename `HTTP::Request#method` to `HTTP::Request#verb` (@krainboltgreene)
* Add `HTTP::ResponseBody` class (@tarcieri)
* Change API of response on `HTTP::Client.request` and "friends" (`#get`, `#post`, etc) (@tarcieri)
* Add `HTTP::Response#readpartial` (@tarcieri)
* Add `HTTP::Headers` class (@ixti)
* Fix and improve following redirects (@ixti)
* Add `HTTP::Request#redirect` (@ixti)
* Add `HTTP::Response#content_type` (@ixti)
* Add `HTTP::Response#mime_type` (@ixti)
* Add `HTTP::Response#charset` (@ixti)
* Improve error message upon invalid URI scheme (@ixti)
* Consolidate errors under common `HTTP::Error` namespace (@ixti)
* Add easy way of adding Authorization header (@ixti)
* Fix proxy support (@hundredwatt)
* Fix and improve query params handing (@jwinter)
* Change API of custom MIME type parsers (@ixti)
* Remove `HTTP::Chainable#with_response` (@ixti)
* Remove `HTTP::Response::BodyDelegator` (@ixti)
* Remove `HTTP::Response#parsed_body` (@ixti)
* Bump up input buffer from 4K to 16K (@tarcieri)

(Note version 0.5.1 is a maintenance branch and released after 0.6.1)

diffstat:

 www/ruby-http/Makefile |   4 ++--
 www/ruby-http/PLIST    |  44 ++++++++++++++++++++++++++++++++++----------
 www/ruby-http/distinfo |   8 ++++----
 3 files changed, 40 insertions(+), 16 deletions(-)

diffs (108 lines):

diff -r 6fa4f80fb194 -r 3b118cebe896 www/ruby-http/Makefile
--- a/www/ruby-http/Makefile    Sun Jun 01 16:35:31 2014 +0000
+++ b/www/ruby-http/Makefile    Sun Jun 01 16:36:48 2014 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2014/01/17 13:22:51 obache Exp $
+# $NetBSD: Makefile,v 1.2 2014/06/01 16:36:48 tsutsui Exp $
 #
 
-DISTNAME=      http-0.5.0
+DISTNAME=      http-0.6.1
 CATEGORIES=    www
 
 MAINTAINER=    tsutsui%NetBSD.org@localhost
diff -r 6fa4f80fb194 -r 3b118cebe896 www/ruby-http/PLIST
--- a/www/ruby-http/PLIST       Sun Jun 01 16:35:31 2014 +0000
+++ b/www/ruby-http/PLIST       Sun Jun 01 16:36:48 2014 +0000
@@ -1,8 +1,9 @@
-@comment $NetBSD: PLIST,v 1.1 2014/01/17 13:22:51 obache Exp $
+@comment $NetBSD: PLIST,v 1.2 2014/06/01 16:36:48 tsutsui Exp $
 ${GEM_HOME}/cache/${GEM_NAME}.gem
 ${GEM_LIBDIR}/.coveralls.yml
 ${GEM_LIBDIR}/.gitignore
 ${GEM_LIBDIR}/.rspec
+${GEM_LIBDIR}/.rubocop.yml
 ${GEM_LIBDIR}/.travis.yml
 ${GEM_LIBDIR}/CHANGES.md
 ${GEM_LIBDIR}/Gemfile
@@ -10,35 +11,58 @@
 ${GEM_LIBDIR}/LICENSE.txt
 ${GEM_LIBDIR}/README.md
 ${GEM_LIBDIR}/Rakefile
-${GEM_LIBDIR}/examples/celluloid.rb
+${GEM_LIBDIR}/examples/parallel_requests_with_celluloid.rb
 ${GEM_LIBDIR}/http.gemspec
 ${GEM_LIBDIR}/lib/http.rb
+${GEM_LIBDIR}/lib/http/authorization_header.rb
+${GEM_LIBDIR}/lib/http/authorization_header/basic_auth.rb
+${GEM_LIBDIR}/lib/http/authorization_header/bearer_token.rb
+${GEM_LIBDIR}/lib/http/backports.rb
+${GEM_LIBDIR}/lib/http/backports/base64.rb
+${GEM_LIBDIR}/lib/http/backports/uri.rb
 ${GEM_LIBDIR}/lib/http/chainable.rb
 ${GEM_LIBDIR}/lib/http/client.rb
-${GEM_LIBDIR}/lib/http/header.rb
+${GEM_LIBDIR}/lib/http/content_type.rb
+${GEM_LIBDIR}/lib/http/errors.rb
+${GEM_LIBDIR}/lib/http/headers.rb
+${GEM_LIBDIR}/lib/http/headers/mixin.rb
 ${GEM_LIBDIR}/lib/http/mime_type.rb
-${GEM_LIBDIR}/lib/http/mime_types/json.rb
+${GEM_LIBDIR}/lib/http/mime_type/adapter.rb
+${GEM_LIBDIR}/lib/http/mime_type/json.rb
 ${GEM_LIBDIR}/lib/http/options.rb
+${GEM_LIBDIR}/lib/http/redirector.rb
 ${GEM_LIBDIR}/lib/http/request.rb
-${GEM_LIBDIR}/lib/http/request_stream.rb
+${GEM_LIBDIR}/lib/http/request/writer.rb
 ${GEM_LIBDIR}/lib/http/response.rb
-${GEM_LIBDIR}/lib/http/response_parser.rb
-${GEM_LIBDIR}/lib/http/uri_backport.rb
+${GEM_LIBDIR}/lib/http/response/body.rb
+${GEM_LIBDIR}/lib/http/response/parser.rb
 ${GEM_LIBDIR}/lib/http/version.rb
+${GEM_LIBDIR}/logo.png
+${GEM_LIBDIR}/spec/http/authorization_header/basic_auth_spec.rb
+${GEM_LIBDIR}/spec/http/authorization_header/bearer_token_spec.rb
+${GEM_LIBDIR}/spec/http/authorization_header_spec.rb
+${GEM_LIBDIR}/spec/http/backports/base64_spec.rb
+${GEM_LIBDIR}/spec/http/backports/uri_spec.rb
+${GEM_LIBDIR}/spec/http/client_spec.rb
+${GEM_LIBDIR}/spec/http/content_type_spec.rb
+${GEM_LIBDIR}/spec/http/headers/mixin_spec.rb
+${GEM_LIBDIR}/spec/http/headers_spec.rb
 ${GEM_LIBDIR}/spec/http/options/body_spec.rb
-${GEM_LIBDIR}/spec/http/options/callbacks_spec.rb
 ${GEM_LIBDIR}/spec/http/options/form_spec.rb
 ${GEM_LIBDIR}/spec/http/options/headers_spec.rb
+${GEM_LIBDIR}/spec/http/options/json_spec.rb
 ${GEM_LIBDIR}/spec/http/options/merge_spec.rb
 ${GEM_LIBDIR}/spec/http/options/new_spec.rb
 ${GEM_LIBDIR}/spec/http/options/proxy_spec.rb
-${GEM_LIBDIR}/spec/http/options/response_spec.rb
 ${GEM_LIBDIR}/spec/http/options_spec.rb
+${GEM_LIBDIR}/spec/http/redirector_spec.rb
+${GEM_LIBDIR}/spec/http/request/writer_spec.rb
 ${GEM_LIBDIR}/spec/http/request_spec.rb
-${GEM_LIBDIR}/spec/http/request_stream_spec.rb
+${GEM_LIBDIR}/spec/http/response/body_spec.rb
 ${GEM_LIBDIR}/spec/http/response_spec.rb
 ${GEM_LIBDIR}/spec/http_spec.rb
 ${GEM_LIBDIR}/spec/spec_helper.rb
 ${GEM_LIBDIR}/spec/support/example_server.rb
 ${GEM_LIBDIR}/spec/support/proxy_server.rb
 ${GEM_HOME}/specifications/${GEM_NAME}.gemspec
+@pkgdir lib/ruby/gems/2.0.0/build_info
diff -r 6fa4f80fb194 -r 3b118cebe896 www/ruby-http/distinfo
--- a/www/ruby-http/distinfo    Sun Jun 01 16:35:31 2014 +0000
+++ b/www/ruby-http/distinfo    Sun Jun 01 16:36:48 2014 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2014/01/17 13:22:51 obache Exp $
+$NetBSD: distinfo,v 1.2 2014/06/01 16:36:48 tsutsui Exp $
 
-SHA1 (http-0.5.0.gem) = d3a076a190e3ca6e7ed54945ea84dfbfef6f1ae4
-RMD160 (http-0.5.0.gem) = ef008d93425f9f6ad69d22d1019637601cea094e
-Size (http-0.5.0.gem) = 20992 bytes
+SHA1 (http-0.6.1.gem) = 44aa4d484afbe59d7fd02447a38f800d35740b33
+RMD160 (http-0.6.1.gem) = 32fd1ded4b00d661ab0a742d0e723e8d9dbd4708
+Size (http-0.6.1.gem) = 66048 bytes



Home | Main Index | Thread Index | Old Index