siebel_donations 1.0.11 → 1.0.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/siebel_donations/address.rb +1 -1
- data/lib/siebel_donations/base.rb +3 -2
- data/lib/siebel_donations/version.rb +1 -1
- data/lib/siebel_donations.rb +1 -1
- data/spec/base_spec.rb +25 -0
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2524352a26b0a76d1a52e45580267a3ac9fc58ff9951e4cb942dce81a7d8237b
|
4
|
+
data.tar.gz: 3886685b60392bb80ad7909da1c256e362840e031826e2413d2c0eaac3010347
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7921b075c3bbccd78d9822597632975d2afa2f6e3da38e1fff7db500b4829a971104484b2a03e7afb2687438827b561ece8ad629c8921766b83d77406bc08efd
|
7
|
+
data.tar.gz: 161d4246544427d1daa88d9b910dadfc97722793b271fe636bf393c7c9c9f17d7ed09dff826fb87fe1e4917d2beab5a497ba62d02c65d231396d25ea543916ed
|
@@ -14,7 +14,8 @@ module SiebelDonations
|
|
14
14
|
def self.get(path, params)
|
15
15
|
raise 'You need to configure SiebelDonations with your oauth_token.' unless SiebelDonations.oauth_token
|
16
16
|
|
17
|
-
params[:
|
17
|
+
request_timeout = params[:timeout] || SiebelDonations.default_timeout
|
18
|
+
params[:response_timeout] ||= request_timeout
|
18
19
|
retry_count = params.delete(:retry_count) || SiebelDonations.default_retry_count
|
19
20
|
|
20
21
|
url = SiebelDonations.base_url + path
|
@@ -23,7 +24,7 @@ module SiebelDonations
|
|
23
24
|
retryable_errors = [RestClient::InternalServerError, Timeout::Error, Errno::ECONNRESET]
|
24
25
|
|
25
26
|
Retryable.retryable on: retryable_errors, times: retry_count, sleep: 20 do
|
26
|
-
request_params = { method: :get, url: url, headers: headers, timeout:
|
27
|
+
request_params = { method: :get, url: url, headers: headers, timeout: request_timeout }
|
27
28
|
RestClient::Request.execute(request_params) do |response, request, result, &block|
|
28
29
|
case response.code
|
29
30
|
when 200
|
data/lib/siebel_donations.rb
CHANGED
data/spec/base_spec.rb
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe SiebelDonations::Base do
|
4
|
+
context '.get' do
|
5
|
+
context 'with timeout param set' do
|
6
|
+
it 'passes param to RestClient' do
|
7
|
+
expect(RestClient::Request).to receive(:execute)
|
8
|
+
.with(hash_including(url: SiebelDonations.base_url, timeout: 123))
|
9
|
+
.and_return(nil)
|
10
|
+
|
11
|
+
described_class.get('', timeout: 123)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
context 'without timeout param set' do
|
16
|
+
it 'passes default to RestClient' do
|
17
|
+
expect(RestClient::Request).to receive(:execute)
|
18
|
+
.with(hash_including(timeout: 6000))
|
19
|
+
.and_return(nil)
|
20
|
+
|
21
|
+
described_class.get('', {})
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: siebel_donations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Starcher
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-03-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|
@@ -92,12 +92,13 @@ files:
|
|
92
92
|
- lib/siebel_donations/profile.rb
|
93
93
|
- lib/siebel_donations/version.rb
|
94
94
|
- siebel_donations.gemspec
|
95
|
+
- spec/base_spec.rb
|
95
96
|
- spec/donation_spec.rb
|
96
97
|
- spec/spec_helper.rb
|
97
98
|
homepage: ''
|
98
99
|
licenses: []
|
99
100
|
metadata: {}
|
100
|
-
post_install_message:
|
101
|
+
post_install_message:
|
101
102
|
rdoc_options: []
|
102
103
|
require_paths:
|
103
104
|
- lib
|
@@ -112,11 +113,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
112
113
|
- !ruby/object:Gem::Version
|
113
114
|
version: '0'
|
114
115
|
requirements: []
|
115
|
-
|
116
|
-
|
117
|
-
signing_key:
|
116
|
+
rubygems_version: 3.3.0
|
117
|
+
signing_key:
|
118
118
|
specification_version: 4
|
119
119
|
summary: Get donation information from Siebel Donor
|
120
120
|
test_files:
|
121
|
+
- spec/base_spec.rb
|
121
122
|
- spec/donation_spec.rb
|
122
123
|
- spec/spec_helper.rb
|