finapps 1.0.0 → 1.0.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 +4 -4
- data/lib/finapps/rest/client.rb +4 -4
- data/lib/finapps/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ba0dc49c6eb9279264ab1219ad0c28c0b033075
|
4
|
+
data.tar.gz: fc6826aff9063837a11f09acc07d17e53aef601c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a045531b6c73e1aef3ef1f78582936562b635b790de99d86aea543fc1f35a68b041b59a33900ab157d03eb7c3cde2037850179fae6ffcbef8920185ca214e0e8
|
7
|
+
data.tar.gz: acebcc69e10d1bbfe1a5d1c3b48073778bcf53dc0c7e2a9123df653968c0813e737233d5ff61d6a03f6e8853210d8ec0edf1fe051555a7d2bffdb000b6cb50d4
|
data/lib/finapps/rest/client.rb
CHANGED
@@ -164,7 +164,7 @@ module FinApps
|
|
164
164
|
raise MissingArgumentsError.new 'Missing argument: path.' if path.blank?
|
165
165
|
|
166
166
|
logger.debug "##{__method__.to_s} => GET path:#{path}"
|
167
|
-
response =
|
167
|
+
response = connection.get do |req|
|
168
168
|
req.url path
|
169
169
|
end
|
170
170
|
|
@@ -184,7 +184,7 @@ module FinApps
|
|
184
184
|
raise MissingArgumentsError.new 'Missing argument: path.' if path.blank?
|
185
185
|
|
186
186
|
logger.debug "##{__method__.to_s} => POST path:#{path} params:#{skip_sensitive_data params }"
|
187
|
-
response =
|
187
|
+
response = connection.post do |req|
|
188
188
|
req.url path
|
189
189
|
req.body = params
|
190
190
|
end
|
@@ -205,7 +205,7 @@ module FinApps
|
|
205
205
|
raise MissingArgumentsError.new 'Missing argument: path.' if path.blank?
|
206
206
|
|
207
207
|
logger.debug "##{__method__.to_s} => PUT path:#{path} params:#{skip_sensitive_data(params)}"
|
208
|
-
response =
|
208
|
+
response = connection.put do |req|
|
209
209
|
req.url path
|
210
210
|
req.body = params
|
211
211
|
end
|
@@ -226,7 +226,7 @@ module FinApps
|
|
226
226
|
raise MissingArgumentsError.new 'Missing argument: path.' if path.blank?
|
227
227
|
|
228
228
|
logger.debug "##{__method__.to_s} => DELETE path:#{path} params:#{skip_sensitive_data(params)}"
|
229
|
-
response =
|
229
|
+
response = connection.delete do |req|
|
230
230
|
req.url path
|
231
231
|
req.body = params
|
232
232
|
end
|
data/lib/finapps/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: finapps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Erich Quintero
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-04-
|
11
|
+
date: 2016-04-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|