puntopagos 0.1.15 → 0.1.16
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/puntopagos/executioner.rb +1 -0
- data/lib/puntopagos/version.rb +1 -1
- metadata +1 -1
@@ -15,6 +15,7 @@ module PuntoPagos
|
|
15
15
|
if method == :post
|
16
16
|
resp = RestClient.method(method).call(@@puntopagos_base_url+path, data.to_json, headers)
|
17
17
|
elsif method == :get
|
18
|
+
puts "METHOD: #{method} URL:#{@@puntopagos_base_url} PATH:#{path}"
|
18
19
|
resp = RestClient.method(method).call(@@puntopagos_base_url+path, headers)
|
19
20
|
end
|
20
21
|
JSON.parse(resp)
|
data/lib/puntopagos/version.rb
CHANGED