sage_pay 0.2.11 → 0.2.12
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/lib/sage_pay.rb +1 -1
- data/lib/sage_pay/server.rb +2 -1
- data/sage_pay.gemspec +1 -1
- data/spec/sage_pay_spec.rb +2 -2
- metadata +2 -2
data/lib/sage_pay.rb
CHANGED
data/lib/sage_pay/server.rb
CHANGED
@@ -17,8 +17,9 @@ module SagePay
|
|
17
17
|
|
18
18
|
# The notification URL is only relevant to registration options, but the
|
19
19
|
# rest are relevant to all requests.
|
20
|
+
# FIXME: This should be Hash#only instead of Hash#except!
|
20
21
|
def self.default_options
|
21
|
-
default_registration_options.except(:notification_url)
|
22
|
+
default_registration_options.except(:notification_url, :profile)
|
22
23
|
end
|
23
24
|
|
24
25
|
def self.related_transaction(attributes = {})
|
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.12'
|
11
11
|
s.date = '2010-04-28'
|
12
12
|
s.rubyforge_project = 'sage_pay'
|
13
13
|
|
data/spec/sage_pay_spec.rb
CHANGED