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.
@@ -7,7 +7,7 @@ require 'md5'
7
7
  require 'uuid'
8
8
 
9
9
  module SagePay
10
- VERSION = '0.2.11'
10
+ VERSION = '0.2.12'
11
11
  end
12
12
 
13
13
  require 'validatable-ext'
@@ -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 = {})
@@ -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.11'
10
+ s.version = '0.2.12'
11
11
  s.date = '2010-04-28'
12
12
  s.rubyforge_project = 'sage_pay'
13
13
 
@@ -1,7 +1,7 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  describe SagePay do
4
- it "should be version 0.2.11" do
5
- SagePay::VERSION.should == '0.2.11'
4
+ it "should be version 0.2.12" do
5
+ SagePay::VERSION.should == '0.2.12'
6
6
  end
7
7
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 11
9
- version: 0.2.11
8
+ - 12
9
+ version: 0.2.12
10
10
  platform: ruby
11
11
  authors:
12
12
  - Graeme Mathieson