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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: eb461d21865e07fa51273dcdba8337ec180e92a2
4
- data.tar.gz: 33b0266527b3cae73c4c114b1effe741a9f4f20e
3
+ metadata.gz: 5ba0dc49c6eb9279264ab1219ad0c28c0b033075
4
+ data.tar.gz: fc6826aff9063837a11f09acc07d17e53aef601c
5
5
  SHA512:
6
- metadata.gz: fe94326204732916fbcf07c404ad85a311b1ad5a496a9eb6adae4286ce4766ea35c0b447ecc1c235d764ed297d93d7271ae1fb5a22cbec31aa8e3fd0fc2678d7
7
- data.tar.gz: ff6af765e1e116ab4698c07706774c5d3bd9276aa1b755643be39dc0534487bf0114e0fa9cc6c5457b5e53aafb6369b197f7fb232bd3428014d02b1e734f0a4a
6
+ metadata.gz: a045531b6c73e1aef3ef1f78582936562b635b790de99d86aea543fc1f35a68b041b59a33900ab157d03eb7c3cde2037850179fae6ffcbef8920185ca214e0e8
7
+ data.tar.gz: acebcc69e10d1bbfe1a5d1c3b48073778bcf53dc0c7e2a9123df653968c0813e737233d5ff61d6a03f6e8853210d8ec0edf1fe051555a7d2bffdb000b6cb50d4
@@ -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 = @connection.get do |req|
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 = @connection.post do |req|
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 = @connection.put do |req|
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 = @connection.delete do |req|
229
+ response = connection.delete do |req|
230
230
  req.url path
231
231
  req.body = params
232
232
  end
@@ -1,3 +1,3 @@
1
1
  module FinApps
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
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.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-15 00:00:00.000000000 Z
11
+ date: 2016-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday