sage_pay 0.2.2 → 0.2.3
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.
- data/CHANGELOG.md +5 -0
- data/lib/sage_pay.rb +1 -1
- data/lib/sage_pay/server/transaction_notification.rb +4 -0
- data/sage_pay.gemspec +1 -1
- data/spec/sage_pay_spec.rb +2 -2
- metadata +2 -2
data/CHANGELOG.md
CHANGED
data/lib/sage_pay.rb
CHANGED
|
@@ -110,6 +110,10 @@ module SagePay
|
|
|
110
110
|
end
|
|
111
111
|
end
|
|
112
112
|
|
|
113
|
+
if signature_verification_details.nil? && block_given?
|
|
114
|
+
signature_verification_details = yield(attributes)
|
|
115
|
+
end
|
|
116
|
+
|
|
113
117
|
unless signature_verification_details.nil?
|
|
114
118
|
# We need to calculate the VPS signature from the values passed in as
|
|
115
119
|
# additional params from the original registration and notification.
|
data/sage_pay.gemspec
CHANGED
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
|
7
7
|
## If your rubyforge_project name is different, then edit it and comment out
|
|
8
8
|
## the sub! line in the Rakefile
|
|
9
9
|
s.name = 'sage_pay'
|
|
10
|
-
s.version = '0.2.
|
|
10
|
+
s.version = '0.2.3'
|
|
11
11
|
s.date = '2010-04-25'
|
|
12
12
|
s.rubyforge_project = 'sage_pay'
|
|
13
13
|
|
data/spec/sage_pay_spec.rb
CHANGED