sage_pay 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.5
4
+
5
+ * Carriage return and line feed. These will all be compressed into a 0.3
6
+ release, but I need to keep releasing so that Heroku can pick 'em up... :-/
7
+
3
8
  ## 0.2.4
4
9
 
5
10
  * Generate the appropriate response.
@@ -27,7 +27,7 @@ module SagePay
27
27
  response_params.map do |tuple|
28
28
  key, value = tuple
29
29
  "#{key}=#{value}"
30
- end.join("\n")
30
+ end.join("\r\n")
31
31
  end
32
32
 
33
33
 
data/lib/sage_pay.rb CHANGED
@@ -6,7 +6,7 @@ require 'md5'
6
6
  require 'uuid'
7
7
 
8
8
  module SagePay
9
- VERSION = '0.2.4'
9
+ VERSION = '0.2.5'
10
10
  end
11
11
 
12
12
  require 'validatable-ext'
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.4'
10
+ s.version = '0.2.5'
11
11
  s.date = '2010-04-25'
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.4" do
5
- SagePay::VERSION.should == '0.2.4'
4
+ it "should be version 0.2.5" do
5
+ SagePay::VERSION.should == '0.2.5'
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
- - 4
9
- version: 0.2.4
8
+ - 5
9
+ version: 0.2.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Graeme Mathieson