2020-03-20 18:58:37 +01:00
|
|
|
@comment $NetBSD: PLIST,v 1.14 2020/03/20 17:58:37 taca Exp $
|
2010-09-10 15:15:44 +02:00
|
|
|
${GEM_HOME}/cache/${GEM_NAME}.gem
|
2015-03-08 16:17:17 +01:00
|
|
|
${GEM_EXTSDIR}/gem.build_complete
|
2014-03-17 15:41:15 +01:00
|
|
|
${GEM_EXTSDIR}/patron/session_ext.${RUBY_DLEXT}
|
2011-03-23 17:41:03 +01:00
|
|
|
${GEM_LIBDIR}/.autotest
|
|
|
|
${GEM_LIBDIR}/.gitignore
|
|
|
|
${GEM_LIBDIR}/.rspec
|
Update ruby-patron to 0.8.0.
### 0.8.0
* Add `Response#inspectable_body`, `Response#decoded_body`. `decoded_body` will atempt to decode
the HTTP response into your internal encoding, using the charset header that the server has
provided. Note that this operation may fail - if the server said that the body is in a certain
encoding, but this is then overridden with, say, `meta` elements in the HTML Patron is _not_
going to parse the HTML to figure out how to decode.
### 0.7.0
* Allow Ruby File objects to be passed as `data` to `Session#put`, `Sesion#post` etc.
### 0.6.5
* Prevent libCURL from doing requests to non-HTTP/HTTPS URLs, and from following redirects to such URLs
### 0.6.4
* Set the default User-Agent string, since some sites require it (like the Github API).
* Add Response#ok? and Response#error? for cleaner branching on the returned Response objects
* Explain a segfault with SSL in forked processes on OSX, document the way to avoid the issue
* Fix segfault when attempting multiple post requests with multipart (#119)
### 0.6.3
* Fix timeout when uploading a body using all verbs except POST
* Add PATCH HTTP verb support
* Populate the curl state object from the reader methods of `Request`
### 0.6.1
* Fix compilation on older versions of libCURL
* Fix cookie jar files not being saved after request
* Reformat the gem documentation to YARD, document a few behaviors
### 0.6.0
* Add `Patron::Session#automatic_content_encoding` for automatic deflate handling via `Accept`/`Content-Encoding`
### 0.5.1
* Allow customizing the class used for the response (now uses `Session#response_class` to determine the class at runtime)
* Do not fail body decoding if the charset name set in the header is invalid
2016-10-18 18:02:47 +02:00
|
|
|
${GEM_LIBDIR}/.travis.yml
|
|
|
|
${GEM_LIBDIR}/.yardopts
|
|
|
|
${GEM_LIBDIR}/CHANGELOG.md
|
2011-03-23 17:41:03 +01:00
|
|
|
${GEM_LIBDIR}/Gemfile
|
2009-12-02 13:13:28 +01:00
|
|
|
${GEM_LIBDIR}/LICENSE
|
2015-03-13 18:14:02 +01:00
|
|
|
${GEM_LIBDIR}/README.md
|
2009-12-02 13:13:28 +01:00
|
|
|
${GEM_LIBDIR}/Rakefile
|
2011-03-23 17:41:03 +01:00
|
|
|
${GEM_LIBDIR}/ext/patron/.gitignore
|
2009-12-02 13:13:28 +01:00
|
|
|
${GEM_LIBDIR}/ext/patron/extconf.rb
|
2012-03-18 06:11:32 +01:00
|
|
|
${GEM_LIBDIR}/ext/patron/membuffer.c
|
|
|
|
${GEM_LIBDIR}/ext/patron/membuffer.h
|
2009-12-02 13:13:28 +01:00
|
|
|
${GEM_LIBDIR}/ext/patron/session_ext.c
|
2015-03-13 18:14:02 +01:00
|
|
|
${GEM_LIBDIR}/ext/patron/sglib.h
|
2009-12-02 13:13:28 +01:00
|
|
|
${GEM_LIBDIR}/lib/patron.rb
|
|
|
|
${GEM_LIBDIR}/lib/patron/error.rb
|
2018-03-17 15:43:29 +01:00
|
|
|
${GEM_LIBDIR}/lib/patron/header_parser.rb
|
2011-03-23 16:30:25 +01:00
|
|
|
${GEM_LIBDIR}/lib/patron/proxy_type.rb
|
2009-12-02 13:13:28 +01:00
|
|
|
${GEM_LIBDIR}/lib/patron/request.rb
|
|
|
|
${GEM_LIBDIR}/lib/patron/response.rb
|
Update ruby-patron to 0.8.0.
### 0.8.0
* Add `Response#inspectable_body`, `Response#decoded_body`. `decoded_body` will atempt to decode
the HTTP response into your internal encoding, using the charset header that the server has
provided. Note that this operation may fail - if the server said that the body is in a certain
encoding, but this is then overridden with, say, `meta` elements in the HTML Patron is _not_
going to parse the HTML to figure out how to decode.
### 0.7.0
* Allow Ruby File objects to be passed as `data` to `Session#put`, `Sesion#post` etc.
### 0.6.5
* Prevent libCURL from doing requests to non-HTTP/HTTPS URLs, and from following redirects to such URLs
### 0.6.4
* Set the default User-Agent string, since some sites require it (like the Github API).
* Add Response#ok? and Response#error? for cleaner branching on the returned Response objects
* Explain a segfault with SSL in forked processes on OSX, document the way to avoid the issue
* Fix segfault when attempting multiple post requests with multipart (#119)
### 0.6.3
* Fix timeout when uploading a body using all verbs except POST
* Add PATCH HTTP verb support
* Populate the curl state object from the reader methods of `Request`
### 0.6.1
* Fix compilation on older versions of libCURL
* Fix cookie jar files not being saved after request
* Reformat the gem documentation to YARD, document a few behaviors
### 0.6.0
* Add `Patron::Session#automatic_content_encoding` for automatic deflate handling via `Accept`/`Content-Encoding`
### 0.5.1
* Allow customizing the class used for the response (now uses `Session#response_class` to determine the class at runtime)
* Do not fail body decoding if the charset name set in the header is invalid
2016-10-18 18:02:47 +02:00
|
|
|
${GEM_LIBDIR}/lib/patron/response_decoding.rb
|
2009-12-02 13:13:28 +01:00
|
|
|
${GEM_LIBDIR}/lib/patron/session.rb
|
|
|
|
${GEM_LIBDIR}/lib/patron/session_ext.${RUBY_DLEXT}
|
2011-08-13 02:30:55 +02:00
|
|
|
${GEM_LIBDIR}/lib/patron/util.rb
|
2011-03-23 17:41:03 +01:00
|
|
|
${GEM_LIBDIR}/lib/patron/version.rb
|
|
|
|
${GEM_LIBDIR}/patron.gemspec
|
2012-03-18 06:11:32 +01:00
|
|
|
${GEM_LIBDIR}/pic.png
|
2011-03-23 17:41:03 +01:00
|
|
|
${GEM_LIBDIR}/script/console
|
|
|
|
${GEM_LIBDIR}/script/test_server
|
2018-03-17 15:43:29 +01:00
|
|
|
${GEM_LIBDIR}/spec/header_parser_spec.rb
|
2009-12-02 13:13:28 +01:00
|
|
|
${GEM_LIBDIR}/spec/patron_spec.rb
|
|
|
|
${GEM_LIBDIR}/spec/request_spec.rb
|
|
|
|
${GEM_LIBDIR}/spec/response_spec.rb
|
2018-03-17 15:43:29 +01:00
|
|
|
${GEM_LIBDIR}/spec/sample_response_headers/headers_wetransfer.txt
|
|
|
|
${GEM_LIBDIR}/spec/sample_response_headers/headers_wetransfer_with_proxy_status.txt
|
|
|
|
${GEM_LIBDIR}/spec/sample_response_headers/headers_wetransfer_with_redirect.txt
|
|
|
|
${GEM_LIBDIR}/spec/sample_response_headers/headers_with_set_cookie.txt
|
|
|
|
${GEM_LIBDIR}/spec/sample_response_headers/sample_http2_header.txt
|
|
|
|
${GEM_LIBDIR}/spec/sample_response_headers/webmock_headers_without_trailing_crlf.txt
|
2009-12-02 13:13:28 +01:00
|
|
|
${GEM_LIBDIR}/spec/session_spec.rb
|
2015-03-13 18:14:02 +01:00
|
|
|
${GEM_LIBDIR}/spec/session_ssl_spec.rb
|
2009-12-02 13:13:28 +01:00
|
|
|
${GEM_LIBDIR}/spec/spec_helper.rb
|
2020-03-20 18:58:37 +01:00
|
|
|
${GEM_LIBDIR}/spec/support/certs/cacert.pem
|
|
|
|
${GEM_LIBDIR}/spec/support/certs/privkey.pem
|
2018-03-17 15:43:29 +01:00
|
|
|
${GEM_LIBDIR}/spec/support/config.ru
|
2012-03-18 06:11:32 +01:00
|
|
|
${GEM_LIBDIR}/spec/support/test_server.rb
|
2011-08-13 02:30:55 +02:00
|
|
|
${GEM_LIBDIR}/spec/util_spec.rb
|
2010-09-10 15:15:44 +02:00
|
|
|
${GEM_HOME}/specifications/${GEM_NAME}.gemspec
|