paypal_nvp 0.1.4 → 0.1.5

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.
Files changed (3) hide show
  1. data/lib/paypal_nvp.rb +1 -0
  2. data/paypal_nvp.gemspec +1 -1
  3. metadata +1 -1
data/lib/paypal_nvp.rb CHANGED
@@ -17,6 +17,7 @@ class PaypalNVP
17
17
 
18
18
  def call_paypal(data)
19
19
  data.merge!({ "USER" => @user, "PWD" => @pass, "SIGNATURE" => @cert, "VERSION" => "50.0" })
20
+ data.merge!(extras)
20
21
  qs = []
21
22
  data.each do |key, value|
22
23
  qs << "#{key.to_s.upcase}=#{url_encode(value)}"
data/paypal_nvp.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{paypal_nvp}
5
- s.version = "0.1.4"
5
+ s.version = "0.1.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Olivier BONNAURE - Direct Interactive LLC"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paypal_nvp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Olivier BONNAURE - Direct Interactive LLC