twocheckout 0.3.1 → 0.4.0
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.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/twocheckout/api.rb +1 -1
- data/lib/twocheckout/twocheckout_error.rb +4 -2
- data/lib/twocheckout/version.rb +1 -1
- data/test/twocheckout_test.rb +14 -14
- data/twocheckout.gemspec +2 -2
- metadata +5 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c2c35dc95ae9cdba6bff621701724ca93c71c21a
|
4
|
+
data.tar.gz: 838bdbed8f8e1dcb5eeff2c33408492460f8b9b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55449a02efd9c154bd807bebc35d882b1c57f9f2b6ed5ff51ab7f2c4ee18ba436ca9510b58128618e27edd42d3671363b7656ada1f222ada1fd5632783754c37
|
7
|
+
data.tar.gz: 1f2ecbf090ee57623cf93d2b1d6130bbccb41aa6ccfd05222524e623400bc9a9a53f7500bde362c5fb09343ff7a266291e47f32a86ffe5b56f602e1757154592
|
data/README.md
CHANGED
@@ -15,7 +15,7 @@ Or import into your Gemfile.
|
|
15
15
|
gem "twocheckout"
|
16
16
|
```
|
17
17
|
|
18
|
-
Full documentation for each binding is provided in the **[
|
18
|
+
Full documentation for each binding is provided in the **[wiki](https://github.com/2Checkout/2checkout-ruby/wiki)**.
|
19
19
|
|
20
20
|
|
21
21
|
Example Purchase API Usage
|
@@ -284,4 +284,4 @@ end
|
|
284
284
|
"Lineitem is not scheduled to recur."
|
285
285
|
```
|
286
286
|
|
287
|
-
Full documentation for each binding is provided in the **[
|
287
|
+
Full documentation for each binding is provided in the **[wiki](https://github.com/2Checkout/2checkout-ruby/wiki)**.
|
data/lib/twocheckout/api.rb
CHANGED
@@ -23,7 +23,7 @@ module Twocheckout
|
|
23
23
|
rescue => e
|
24
24
|
error_hash = JSON.parse(e.response)
|
25
25
|
if error_hash['exception']
|
26
|
-
raise TwocheckoutError.new(error_hash['exception']['errorMsg'])
|
26
|
+
raise TwocheckoutError.new(error_hash['exception']['errorMsg'], error_hash['exception']['errorCode'])
|
27
27
|
else
|
28
28
|
raise TwocheckoutError.new(error_hash['errors'][0]['message'])
|
29
29
|
end
|
data/lib/twocheckout/version.rb
CHANGED
data/test/twocheckout_test.rb
CHANGED
@@ -24,57 +24,57 @@ describe Twocheckout::Sale do
|
|
24
24
|
end
|
25
25
|
|
26
26
|
#refund sale
|
27
|
-
it "Refunding a refunded sale returns
|
27
|
+
it "Refunding a refunded sale returns Twocheckout::TwocheckoutError" do
|
28
28
|
begin
|
29
29
|
sale = Twocheckout::Sale.find(:sale_id => 9093717691800)
|
30
30
|
sale.refund!({:comment => "test refund", :category => 1})
|
31
|
-
rescue
|
31
|
+
rescue Twocheckout::TwocheckoutError => e
|
32
32
|
assert_equal("Invoice was already refunded.", e.message)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
36
36
|
#refund invoice
|
37
|
-
it "Refunding a refunded invoice returns
|
37
|
+
it "Refunding a refunded invoice returns Twocheckout::TwocheckoutError" do
|
38
38
|
begin
|
39
39
|
sale = Twocheckout::Sale.find(:sale_id => 9093717691800)
|
40
40
|
invoice = sale.invoices.first
|
41
41
|
invoice.refund!({:comment => "test refund", :category => 1})
|
42
|
-
rescue
|
42
|
+
rescue Twocheckout::TwocheckoutError => e
|
43
43
|
assert_equal("Invoice was already refunded.", e.message)
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
47
|
#refund lineitem
|
48
|
-
it "Refunding a refunded lineitem returns
|
48
|
+
it "Refunding a refunded lineitem returns Twocheckout::TwocheckoutError" do
|
49
49
|
begin
|
50
50
|
sale = Twocheckout::Sale.find(:sale_id => 9093717691800)
|
51
51
|
first_invoice = sale.invoices.first
|
52
52
|
last_lineitem = first_invoice.lineitems.last
|
53
53
|
last_lineitem.refund!({:comment => "test refund", :category => 1})
|
54
|
-
rescue
|
54
|
+
rescue Twocheckout::TwocheckoutError => e
|
55
55
|
assert_equal("This lineitem cannot be refunded.", e.message)
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
59
|
#stop recurring lineitem
|
60
|
-
it "Stopping a stopped recurring lineitem returns
|
60
|
+
it "Stopping a stopped recurring lineitem returns Twocheckout::TwocheckoutError" do
|
61
61
|
begin
|
62
62
|
sale = Twocheckout::Sale.find(:sale_id => 9093717691800)
|
63
63
|
result = sale.stop_recurring!
|
64
64
|
assert_equal(result, [])
|
65
|
-
rescue
|
65
|
+
rescue Twocheckout::TwocheckoutError => e
|
66
66
|
assert_equal("Lineitem is not scheduled to recur.", e.message)
|
67
67
|
end
|
68
68
|
end
|
69
69
|
|
70
70
|
#stop recurring sale
|
71
|
-
it "Stopping a stopped recurring sale returns
|
71
|
+
it "Stopping a stopped recurring sale returns Twocheckout::TwocheckoutError" do
|
72
72
|
begin
|
73
73
|
sale = Twocheckout::Sale.find(:sale_id => 9093717691800)
|
74
74
|
last_invoice = sale.invoices.last
|
75
75
|
last_lineitem = last_invoice.lineitems.last
|
76
76
|
last_lineitem.stop_recurring!
|
77
|
-
rescue
|
77
|
+
rescue Twocheckout::TwocheckoutError => e
|
78
78
|
assert_equal("Lineitem is not scheduled to recur.", e.message)
|
79
79
|
end
|
80
80
|
end
|
@@ -87,21 +87,21 @@ describe Twocheckout::Sale do
|
|
87
87
|
end
|
88
88
|
|
89
89
|
#mark shipped
|
90
|
-
it "Shipping an intangible sale returns
|
90
|
+
it "Shipping an intangible sale returns Twocheckout::TwocheckoutError" do
|
91
91
|
begin
|
92
92
|
sale = Twocheckout::Sale.find(:sale_id => 9093717691800)
|
93
93
|
sale.ship({:tracking_number => "123"})
|
94
|
-
rescue
|
94
|
+
rescue Twocheckout::TwocheckoutError => e
|
95
95
|
assert_equal("Sale already marked shipped.", e.message)
|
96
96
|
end
|
97
97
|
end
|
98
98
|
|
99
99
|
#reauth
|
100
|
-
it "Reauthorizing a pending sale returns
|
100
|
+
it "Reauthorizing a pending sale returns Twocheckout::TwocheckoutError" do
|
101
101
|
begin
|
102
102
|
sale = Twocheckout::Sale.find(:sale_id => 9093717691800)
|
103
103
|
sale.reauth
|
104
|
-
rescue
|
104
|
+
rescue Twocheckout::TwocheckoutError => e
|
105
105
|
assert_equal("Payment is already pending or deposited and cannot be reauthorized.", e.message)
|
106
106
|
end
|
107
107
|
end
|
data/twocheckout.gemspec
CHANGED
@@ -4,9 +4,9 @@ $:.unshift(File.join(File.dirname(__FILE__), 'lib'))
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.platform = Gem::Platform::RUBY
|
6
6
|
s.name = 'twocheckout'
|
7
|
-
s.version = '0.
|
7
|
+
s.version = '0.4.0'
|
8
8
|
s.summary = '2Checkout Ruby Library'
|
9
|
-
s.description = '0.
|
9
|
+
s.description = '0.4.0'
|
10
10
|
s.summary = '2Checkout Ruby Library'
|
11
11
|
s.author = "Craig Christenson", "Ernesto Garcia"
|
12
12
|
s.email = 'christensoncraig@gmail.com'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twocheckout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Craig Christenson
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2015-03-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rest-client
|
@@ -25,7 +25,7 @@ dependencies:
|
|
25
25
|
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
27
|
version: '1.4'
|
28
|
-
description: 0.
|
28
|
+
description: 0.4.0
|
29
29
|
email: christensoncraig@gmail.com
|
30
30
|
executables: []
|
31
31
|
extensions: []
|
@@ -72,10 +72,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
73
73
|
- none
|
74
74
|
rubyforge_project:
|
75
|
-
rubygems_version: 2.
|
75
|
+
rubygems_version: 2.4.3
|
76
76
|
signing_key:
|
77
77
|
specification_version: 4
|
78
78
|
summary: 2Checkout Ruby Library
|
79
|
-
test_files:
|
80
|
-
- test/minitest_helper.rb
|
81
|
-
- test/twocheckout_test.rb
|
79
|
+
test_files: []
|