global_collect 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/HISTORY +15 -0
- data/VERSION +1 -1
- data/global_collect.gemspec +2 -2
- data/lib/global_collect/const/payment_product.rb +1 -0
- metadata +3 -3
data/HISTORY
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
v0.5.1 (2010-11-02)
|
2
|
+
===================
|
3
|
+
* Add "Offline Bank Transfer" to known PaymentProducts, in order to handle the oddball case of the delayed Real-time Bank/e-wallet capture.
|
4
|
+
* See note near the end of section 1.2.2 of the Programmer's Guide - WDL WebCollect
|
5
|
+
|
6
|
+
v0.5.0 (2010-09-27)
|
7
|
+
===================
|
8
|
+
* Fix issues with recurring billing.
|
9
|
+
* Do not provide PAYMENTPRODUCTID when using saved info (Read docs closer!)
|
10
|
+
* Ensure CVVINDICATOR set on DO_PAYMENT with existing CCOnline payment
|
11
|
+
* Update example for recurring DO_PAYMENT
|
12
|
+
* Make distinction between a DoPayment::RecurringPayment and
|
13
|
+
DoPayment::RecurringCreditCardOnlinePayment so we get the CCOnline response
|
14
|
+
methods only when appropriate.
|
15
|
+
|
1
16
|
v0.4.0 (2010-09-19)
|
2
17
|
===================
|
3
18
|
* Fix method names for DO_PAYMENT response to match idiom used in other responses.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.1
|
data/global_collect.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{global_collect}
|
8
|
-
s.version = "0.5.
|
8
|
+
s.version = "0.5.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Timon Karnezos"]
|
12
|
-
s.date = %q{2010-
|
12
|
+
s.date = %q{2010-11-02}
|
13
13
|
s.description = %q{Gives minimally intrusive access to Global Collect's payment processing API.
|
14
14
|
Currently implements a very small segment of the full API but is built with
|
15
15
|
extensibility in mind.
|
@@ -24,6 +24,7 @@ module GlobalCollect::Const
|
|
24
24
|
:visa => [1 , "Visa Online" ],
|
25
25
|
:amex => [2 , "American Express Online"],
|
26
26
|
:mc => [3 , "MasterCard Online" ],
|
27
|
+
:offline_bank => [11 , "Offline Bank Transfer" ],
|
27
28
|
:visa_delta => [111, "Visa Delta" ],
|
28
29
|
:maestro => [117, "Maestro" ],
|
29
30
|
:solo => [118, "Solo" ],
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 5
|
8
|
-
-
|
9
|
-
version: 0.5.
|
8
|
+
- 1
|
9
|
+
version: 0.5.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Timon Karnezos
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-
|
17
|
+
date: 2010-11-02 00:00:00 -07:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|