ravelin 0.1.30 → 0.1.31

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3a3456e5fa9c2c1b7f23d929e8a1cfba7b6eee2a43a90b57f31d659124aedffc
4
- data.tar.gz: 8d368471d59baa6eb46c7d42b2c7d99f7334d15946851c6dad4aa1db053999f9
3
+ metadata.gz: 524cf8ab5cfa665a3320db7de66f600c1f452abebb02ef08c719af72e15ee9bf
4
+ data.tar.gz: d6bb7d7ddb38ae1c37d31107c2479edb5f0df1c0adebfa669dfc9fa97fc8061e
5
5
  SHA512:
6
- metadata.gz: b3cc621baf50e30c4448eb70f2bba0cf7cd2f474b22247a7e6616bcd2d08a3a7113a636cb80a8fa901942f2499b333915b0660c1f6375c3c6a7661c401e57bef
7
- data.tar.gz: ed3a44566a6e8c70697b54d78c50fc17c827865c46cd4deeb4bbe1e378da2f2014f000d8e3ad519d08ef6ba880c03112219afdd64d68b767f891b5aa5f483def
6
+ metadata.gz: 6497b2de2e120a59941d33b856937a01386507c5cd966636ace8803c489c7889d917c6faac2d8b511d6123124a82d33b63fc795e646c63dedb61408d2dca487d
7
+ data.tar.gz: 18c1e336f1bedfc0161e6e2e0ff8c8135fb9a10133702a2c5aeba7407c836a1a5afacec9a061c8e60885ba18a049770c184dc5d9fc2450b666228332c30d0641
@@ -16,6 +16,7 @@ require 'ravelin/authentication_mechanism'
16
16
  require 'ravelin/ato_login'
17
17
  require 'ravelin/ato_reclaim'
18
18
  require 'ravelin/chargeback'
19
+ require 'ravelin/checkout_transaction'
19
20
  require 'ravelin/customer'
20
21
  require 'ravelin/device'
21
22
  require 'ravelin/item'
@@ -0,0 +1,24 @@
1
+ module Ravelin
2
+ # Represents a transaction as used in the checkout endpoint.
3
+ # As such it can have all the fields of a regular Transaction but only requires the fields of PreTransaction
4
+ class CheckoutTransaction < RavelinObject
5
+ attr_accessor :transaction_id,
6
+ :email,
7
+ :currency,
8
+ :debit,
9
+ :credit,
10
+ :gateway,
11
+ :custom,
12
+ :success,
13
+ :auth_code,
14
+ :decline_code,
15
+ :gateway_reference,
16
+ :avs_result_code,
17
+ :cvv_result_code,
18
+ :type,
19
+ :time,
20
+ :three_d_secure
21
+
22
+ attr_required :transaction_id, :currency, :debit, :credit, :gateway
23
+ end
24
+ end
@@ -39,12 +39,23 @@ module Ravelin
39
39
  password: Password,
40
40
  payment_method: PaymentMethod,
41
41
  voucher_redemption: VoucherRedemption,
42
- transaction: name == :pretransaction ? PreTransaction : Transaction,
42
+ transaction: transaction,
43
43
  label: Label,
44
44
  voucher: Voucher,
45
45
  }
46
46
  end
47
47
 
48
+ def transaction
49
+ case name
50
+ when :pretransaction
51
+ PreTransaction
52
+ when :checkout
53
+ CheckoutTransaction
54
+ else
55
+ Transaction
56
+ end
57
+ end
58
+
48
59
  def format_timestamp(timestamp)
49
60
  case @internal_name
50
61
  when :ato_login
@@ -1,3 +1,3 @@
1
1
  module Ravelin
2
- VERSION = '0.1.30'
2
+ VERSION = '0.1.31'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ravelin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.30
4
+ version: 0.1.31
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Levy
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: exe
13
13
  cert_chain: []
14
- date: 2020-10-16 00:00:00.000000000 Z
14
+ date: 2020-11-12 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: faraday
@@ -112,6 +112,7 @@ files:
112
112
  - lib/ravelin/ato_reclaim.rb
113
113
  - lib/ravelin/authentication_mechanism.rb
114
114
  - lib/ravelin/chargeback.rb
115
+ - lib/ravelin/checkout_transaction.rb
115
116
  - lib/ravelin/client.rb
116
117
  - lib/ravelin/customer.rb
117
118
  - lib/ravelin/device.rb