rubydora 1.9.0 → 1.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f24c21b3c760c87532d624bd0c6eb5b206aad9cc
4
- data.tar.gz: c1cb5e06c06ae1216a6769973bd2192dc7177402
3
+ metadata.gz: 6a3cb0f516d462a7840ff2d05e13736c0e4049a0
4
+ data.tar.gz: c6dfcef98d31c52456eda1997968b0e6f3ddc771
5
5
  SHA512:
6
- metadata.gz: 501cdd7d6659172cf53ce30bd8206897d97ff0bd394c186c093d35279e973f06bc19c530152182f48ed1e4a8c0c3bd5421efd9cae08b992f4e442a857fc622fb
7
- data.tar.gz: af1cbc4d7f91c7c1cd2a799c02bd52e559e628869af1c0d6f7c8e15c91da8f9c0549cfb3bec84616873228de37c21dfedc69b35f245fad48e453a811a7911aa0
6
+ metadata.gz: 6bd6f39b559d69821166fc12211cdb190e5926f27b821434608e3a6fbcd1a93bc47bfb1e6ad82429946f91d227074f02bb27f30b7b5820ee4e893ee8d25686ef
7
+ data.tar.gz: 5dec0ba2cdea2b353dde866fde0d7d42b3ecda766c7df003d27afb58665e891b24780a16bec782aa1ed2e7f346631d7b400debb87d8293088a0424d4002b02f7
@@ -4,13 +4,8 @@ rvm:
4
4
  - 2.1.10
5
5
  - 2.2.5
6
6
  - 2.3.1
7
-
8
7
  jdk:
9
8
  - oraclejdk8
10
-
11
- notifications:
12
- irc: "irc.freenode.org#projecthydra"
13
-
14
9
  env:
15
10
  global:
16
11
  - NOKOGIRI_USE_SYSTEM_LIBRARIES=true
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0
1
+ 1.9.1
@@ -14,8 +14,6 @@ module Rubydora
14
14
 
15
15
  DEFAULT_CONTENT_TYPE = "application/octet-stream"
16
16
 
17
- VALID_CLIENT_OPTIONS = [:user, :password, :timeout, :open_timeout, :ssl_client_cert, :ssl_client_key]
18
-
19
17
  included do
20
18
  include ActiveSupport::Rescuable
21
19
 
@@ -54,7 +52,6 @@ module Rubydora
54
52
  if config.empty? || @config_hash.nil? || (client_config.hash == @config_hash)
55
53
  @config_hash = client_config.hash
56
54
  url = client_config[:url]
57
- client_config.delete_if { |k,v| !VALID_CLIENT_OPTIONS.include?(k) }
58
55
  client_config[:open_timeout] ||= client_config[:timeout]
59
56
  @client ||= RestClient::Resource.new(url, client_config)
60
57
  else
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubydora
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Beer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-13 00:00:00.000000000 Z
11
+ date: 2016-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client