realex 0.1.1 → 0.1.2
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/README.md +5 -1
- data/Rakefile +1 -1
- data/realex.gemspec +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
This is a Ruby library for interfacing with the RealEx API ( http://www.realexpayments.com )
|
|
4
4
|
|
|
5
|
+
## Installation ##
|
|
6
|
+
|
|
7
|
+
gem install realex
|
|
8
|
+
|
|
5
9
|
## Basic Usage ##
|
|
6
10
|
|
|
7
11
|
require 'realex'
|
|
@@ -47,6 +51,6 @@ This is a Ruby library for interfacing with the RealEx API ( http://www.realexpa
|
|
|
47
51
|
|
|
48
52
|
recurring_card.save
|
|
49
53
|
|
|
50
|
-
transaction = RealEx::Recurring::Authorization.new(:amount => 500, :payer => payer, :order_id => order_id)
|
|
54
|
+
transaction = RealEx::Recurring::Authorization.new(:amount => 500, :payer => payer, :order_id => order_id, :reference => 'paulcampbell')
|
|
51
55
|
|
|
52
56
|
transaction.authorize!
|
data/Rakefile
CHANGED
|
@@ -25,7 +25,7 @@ begin
|
|
|
25
25
|
gemspec.email = "paul@rslw.com"
|
|
26
26
|
gemspec.homepage = "http://github.com/paulca/realex"
|
|
27
27
|
gemspec.authors = ["Paul Campbell"]
|
|
28
|
-
gemspec.version = "0.1.
|
|
28
|
+
gemspec.version = "0.1.2"
|
|
29
29
|
end
|
|
30
30
|
rescue LoadError
|
|
31
31
|
puts "Jeweler not available. Install it with: gem install jeweler"
|
data/realex.gemspec
CHANGED