paypal_nvp 0.2.5 → 0.2.8

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 226fd8308f7ddbb0fa9b4b833220db1f806b5be4
4
+ data.tar.gz: 756d081c99fdcb03b523512812a3f5a1189bbf88
5
+ SHA512:
6
+ metadata.gz: 6ab8d372c48048a0b4a37a33237f92fe2d4c95e2e29c963b10bac68294609d4bc5bcab840b10ec37d6fdbc9569a4ce0d68aafbea54697994e852f36dcac31c20
7
+ data.tar.gz: c3c7076e3f6a08dd7f32a00602bbc2a45bddde6ffc2a367ee11dee5841f4ce8d76ab4122ac58e4575a95ff39594ebd9bd22d10b59e041f0eea9d643ba32c540e
data/Rakefile CHANGED
@@ -2,10 +2,10 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('paypal_nvp', '0.2.3') do |p|
5
+ Echoe.new('paypal_nvp', '0.2.8') do |p|
6
6
  p.description = "Paypal NVP API Class."
7
7
  p.url = "http://github.com/solisoft/paypal_nvp"
8
- p.author = "Olivier BONNAURE - IDFuze.com"
8
+ p.author = "Olivier BONNAURE - Direct Interactive LLC"
9
9
  p.email = "o.bonnaure@directinteractive.com"
10
10
  p.ignore_pattern = ["tmp/*", "script/*"]
11
11
  p.development_dependencies = []
data/lib/paypal_nvp.rb CHANGED
@@ -38,7 +38,7 @@ class PaypalNVP
38
38
  data.merge!(@extras)
39
39
  qs = []
40
40
  data.each do |key, value|
41
- qs << "#{key.to_s.upcase}=#{URI.escape(value.to_s)}"
41
+ qs << "#{key.to_s.upcase}=#{URI.escape(value.to_s, /\+/)}"
42
42
  end
43
43
  qs = "#{qs * "&"}"
44
44
 
data/paypal_nvp.gemspec CHANGED
@@ -2,13 +2,13 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{paypal_nvp}
5
- s.version = "0.2.5"
5
+ s.version = "0.2.8"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
- s.authors = ["Olivier BONNAURE - IDFuze.com"]
9
- s.date = %q{2010-05-28}
8
+ s.authors = ["Olivier BONNAURE - Direct Interactive LLC"]
9
+ s.date = %q{2015-04-22}
10
10
  s.description = %q{Paypal NVP API Class.}
11
- s.email = %q{ob@idfuze.com}
11
+ s.email = %q{o.bonnaure@directinteractive.com}
12
12
  s.extra_rdoc_files = ["lib/paypal_nvp.rb", "README.rdoc"]
13
13
  s.files = ["init.rb", "lib/paypal_nvp.rb", "Rakefile", "README.rdoc", "paypal_nvp.gemspec"]
14
14
  s.homepage = %q{http://github.com/solisoft/paypal_nvp}
metadata CHANGED
@@ -1,56 +1,54 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paypal_nvp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
5
- prerelease:
4
+ version: 0.2.8
6
5
  platform: ruby
7
6
  authors:
8
- - Olivier BONNAURE - IDFuze.com
7
+ - Olivier BONNAURE - Direct Interactive LLC
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2010-05-28 00:00:00.000000000 Z
11
+ date: 2015-04-22 00:00:00.000000000 Z
13
12
  dependencies: []
14
13
  description: Paypal NVP API Class.
15
- email: ob@idfuze.com
14
+ email: o.bonnaure@directinteractive.com
16
15
  executables: []
17
16
  extensions: []
18
17
  extra_rdoc_files:
19
18
  - lib/paypal_nvp.rb
20
19
  - README.rdoc
21
20
  files:
21
+ - README.rdoc
22
+ - Rakefile
22
23
  - init.rb
23
24
  - lib/paypal_nvp.rb
24
- - Rakefile
25
- - README.rdoc
26
25
  - paypal_nvp.gemspec
27
26
  homepage: http://github.com/solisoft/paypal_nvp
28
27
  licenses: []
28
+ metadata: {}
29
29
  post_install_message:
30
30
  rdoc_options:
31
- - --line-numbers
32
- - --inline-source
33
- - --title
31
+ - "--line-numbers"
32
+ - "--inline-source"
33
+ - "--title"
34
34
  - Paypal_nvp
35
- - --main
35
+ - "--main"
36
36
  - README.rdoc
37
37
  require_paths:
38
38
  - lib
39
39
  required_ruby_version: !ruby/object:Gem::Requirement
40
- none: false
41
40
  requirements:
42
- - - ! '>='
41
+ - - ">="
43
42
  - !ruby/object:Gem::Version
44
43
  version: '0'
45
44
  required_rubygems_version: !ruby/object:Gem::Requirement
46
- none: false
47
45
  requirements:
48
- - - ! '>='
46
+ - - ">="
49
47
  - !ruby/object:Gem::Version
50
48
  version: '1.2'
51
49
  requirements: []
52
50
  rubyforge_project: paypal_nvp
53
- rubygems_version: 1.8.24
51
+ rubygems_version: 2.2.2
54
52
  signing_key:
55
53
  specification_version: 3
56
54
  summary: Paypal NVP API Class.