realex 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/realex.gemspec +1 -1
- metadata +2 -2
data/README.md
CHANGED
@@ -49,7 +49,7 @@ This is a Ruby library for interfacing with the RealEx API ( http://www.realexpa
|
|
49
49
|
|
50
50
|
recurring_card.card = card
|
51
51
|
|
52
|
-
recurring_card.save
|
52
|
+
recurring_card.save!
|
53
53
|
|
54
54
|
transaction = RealEx::Recurring::Authorization.new(:amount => 500, :payer => payer, :order_id => order_id, :reference => 'paulcampbell')
|
55
55
|
|
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.2.
|
28
|
+
gemspec.version = "0.2.1"
|
29
29
|
gemspec.add_dependency 'hpricot'
|
30
30
|
gemspec.add_dependency 'rio'
|
31
31
|
end
|
data/realex.gemspec
CHANGED