realex 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.md +5 -1
  2. data/Rakefile +1 -1
  3. data/realex.gemspec +1 -1
  4. 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.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
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{realex}
8
- s.version = "0.1.1"
8
+ s.version = "0.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Paul Campbell"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: realex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Campbell