puree 2.9.0 → 2.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/lib/puree/rest/base.rb +1 -1
- data/lib/puree/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 064c99e856cac2e6ea9ccd3b2d45ec3e82007bfe8174728773e74f892dc0b141
|
4
|
+
data.tar.gz: 6e00afb038b34ee7c0b1fd1749951744f21c7362a7cf838708e992a43bd0ba16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef7d50fcfcb865ef2c8970960c3a3415f1864dcf3941872f75a51b925b571fd87aaf748e0faa3511f67ebea797f113e56b4987ef956cbec8f38acca981f484c9
|
7
|
+
data.tar.gz: 0724f9c5996f59394c488781308f688dbc547b6fa3c408b4e30f07825bc96ec1d27604b485086d9a021073abd4036eeb9cd86e489267dfc82cb010fbf7c0c240
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
4
4
|
|
5
|
+
## 2.9.1 2020-03-31
|
6
|
+
### Fixed
|
7
|
+
- Connection timeout keyword argument name for http library.
|
8
|
+
|
5
9
|
## 2.9.0 2020-02-14
|
6
10
|
### Changed
|
7
11
|
- For Pure API 515, 516.
|
data/README.md
CHANGED
data/lib/puree/rest/base.rb
CHANGED
@@ -28,7 +28,7 @@ module Puree
|
|
28
28
|
@http_client = @http_client.headers(api_key_header(config[:api_key]))
|
29
29
|
@http_client = @http_client.timeout read: config[:http_read_timeout],
|
30
30
|
write: config[:http_write_timeout],
|
31
|
-
|
31
|
+
connect: config[:http_connection_timeout]
|
32
32
|
@url = config[:url]
|
33
33
|
end
|
34
34
|
|
data/lib/puree/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puree
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.9.
|
4
|
+
version: 2.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adrian Albin-Clark
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: http
|
@@ -236,7 +236,7 @@ licenses:
|
|
236
236
|
- MIT
|
237
237
|
metadata:
|
238
238
|
source_code_uri: https://github.com/lulibrary/puree
|
239
|
-
documentation_uri: https://www.rubydoc.info/gems/puree/2.9.
|
239
|
+
documentation_uri: https://www.rubydoc.info/gems/puree/2.9.1
|
240
240
|
post_install_message:
|
241
241
|
rdoc_options: []
|
242
242
|
require_paths:
|