ipizza 0.4.3 → 0.4.4

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.3
1
+ 0.4.4
data/ipizza.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{ipizza}
8
- s.version = "0.4.3"
8
+ s.version = "0.4.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Priit Haamer"]
@@ -41,7 +41,7 @@ module Ipizza::Provider
41
41
 
42
42
  def payment_response(params)
43
43
  response = Ipizza::PaymentResponse.new(params)
44
- response.verify(cert)
44
+ response.verify(self.class.file_cert)
45
45
 
46
46
  return response
47
47
  end
@@ -43,7 +43,7 @@ module Ipizza::Provider
43
43
 
44
44
  def payment_response(params)
45
45
  response = Ipizza::PaymentResponse.new(params)
46
- response.verify(cert)
46
+ response.verify(self.class.file_cert)
47
47
 
48
48
  return response
49
49
  end
@@ -73,7 +73,7 @@ module Ipizza::Provider
73
73
 
74
74
  def authentication_response(params)
75
75
  response = Ipizza::AuthenticationResponse.new(params)
76
- response.verify(self.class.file_cert, self.class.encoding)
76
+ response.verify(self.class.file_cert)
77
77
  return response
78
78
  end
79
79
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ipizza
3
3
  version: !ruby/object:Gem::Version
4
- hash: 9
4
+ hash: 7
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
- - 3
10
- version: 0.4.3
9
+ - 4
10
+ version: 0.4.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Priit Haamer