global_collect 0.1.4 → 0.1.5
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/HISTORY +8 -1
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/global_collect.gemspec +3 -2
- data/lib/global_collect/responses/get_order_status/v2_response_methods.rb +2 -0
- metadata +4 -3
data/HISTORY
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
|
+
v0.1.5 (2010-05-04)
|
|
2
|
+
===================
|
|
3
|
+
* add two helper methods to GET_ORDERSTATUS v2.0 response:
|
|
4
|
+
* credit_card_number and expiry_date, which should be present when the user pays with a credit card in hosted merchantlink
|
|
5
|
+
* add example of how to use canned response test helper
|
|
6
|
+
|
|
1
7
|
v0.1.4 (2010-04-30)
|
|
2
8
|
===================
|
|
3
|
-
* move spec/support/support_helper.rb to lib/global_collect/test_helper.rb
|
|
9
|
+
* move spec/support/support_helper.rb to lib/global_collect/test_helper.rb
|
|
10
|
+
* allows apps that use the gem to use helper methods for testing with canned responses
|
|
4
11
|
|
|
5
12
|
v0.1.3 (2010-04-30)
|
|
6
13
|
===================
|
data/Rakefile
CHANGED
|
@@ -22,7 +22,7 @@ END
|
|
|
22
22
|
gemspec.email = "timon.karnezos@gmail.com"
|
|
23
23
|
gemspec.homepage = "http://github.com/timonk/global_collect"
|
|
24
24
|
gemspec.authors = ["Timon Karnezos"]
|
|
25
|
-
gemspec.version = "0.1.
|
|
25
|
+
gemspec.version = "0.1.5"
|
|
26
26
|
gemspec.add_dependency('httparty', '>= 0.5.2')
|
|
27
27
|
gemspec.add_dependency('builder', '>= 2.0')
|
|
28
28
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.5
|
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.1.
|
|
8
|
+
s.version = "0.1.5"
|
|
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-04
|
|
12
|
+
s.date = %q{2010-05-04}
|
|
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.
|
|
@@ -32,6 +32,7 @@ extensibility in mind.
|
|
|
32
32
|
"examples/process_challenged.rb",
|
|
33
33
|
"examples/set_payment.rb",
|
|
34
34
|
"examples/test_connection.rb",
|
|
35
|
+
"examples/using_test_helper.rb",
|
|
35
36
|
"global_collect.gemspec",
|
|
36
37
|
"lib/global_collect.rb",
|
|
37
38
|
"lib/global_collect/api_client.rb",
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 5
|
|
9
|
+
version: 0.1.5
|
|
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-04
|
|
17
|
+
date: 2010-05-04 00:00:00 -07:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -84,6 +84,7 @@ files:
|
|
|
84
84
|
- examples/process_challenged.rb
|
|
85
85
|
- examples/set_payment.rb
|
|
86
86
|
- examples/test_connection.rb
|
|
87
|
+
- examples/using_test_helper.rb
|
|
87
88
|
- global_collect.gemspec
|
|
88
89
|
- lib/global_collect.rb
|
|
89
90
|
- lib/global_collect/api_client.rb
|