postfinancecheckout-ruby-sdk 3.1.5 → 3.2.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/Gemfile.lock +1 -1
- data/README.md +3 -1
- data/lib/postfinancecheckout-ruby-sdk/api_client.rb +12 -0
- data/lib/postfinancecheckout-ruby-sdk/configuration.rb +4 -1
- data/lib/postfinancecheckout-ruby-sdk/models/transaction_completion.rb +26 -1
- data/lib/postfinancecheckout-ruby-sdk/models/transaction_completion_request.rb +26 -1
- data/lib/postfinancecheckout-ruby-sdk/version.rb +1 -1
- data/test/condition_type_service_test.rb +1 -0
- data/test/transaction_create_service_test.rb +1 -0
- data/test/transaction_payment_page_service_test.rb +1 -0
- data/vendor/bundle/ruby/2.4.0/extensions/x86_64-linux/2.4.0/ffi-1.15.5/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.4.0/extensions/x86_64-linux/2.4.0/json-2.6.2/gem_make.out +1 -1
- data/vendor/bundle/ruby/2.4.0/extensions/x86_64-linux/2.4.0/json-2.6.2/mkmf.log +1 -1
- data/vendor/bundle/ruby/2.4.0/gems/ffi-1.15.5/ext/ffi_c/Makefile +3 -3
- data/vendor/bundle/ruby/2.4.0/gems/json-2.6.2/ext/json/Makefile +2 -2
- data/vendor/bundle/ruby/2.4.0/gems/json-2.6.2/ext/json/ext/generator/Makefile +2 -2
- data/vendor/bundle/ruby/2.4.0/gems/json-2.6.2/ext/json/ext/parser/Makefile +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe47f059c81b6761cfd9fb7e0a42401b2009d8cf
|
4
|
+
data.tar.gz: c0203015d18d0ac365b42f4b98dd3566c73cb0c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef7c006c7e6ba469ed5aad3b05125cccc20b3227ea3d47f7a31696af6f37f548c75a5a39ce900c6f45018e527a7f7eef8285ecb2c6699eb0585820587422883b
|
7
|
+
data.tar.gz: 07fbccd5c3b759f19c52e151857b1847c06043252ab972452e77de4b1bdcd732eb8d32867d8043347c38bb1a23ca4c4ae083aee6ec4d79bf647b13499debd555
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -20,7 +20,7 @@ $ gem install postfinancecheckout-ruby-sdk
|
|
20
20
|
|
21
21
|
## Usage
|
22
22
|
The library needs to be configured with your account's space id, user id, and secret key which are available in your [PostFinance Checkout
|
23
|
-
account dashboard](https://checkout.postfinance.ch/account/select). Set `space_id`, `user_id`, and `api_secret` to their values:
|
23
|
+
account dashboard](https://checkout.postfinance.ch/account/select). Set `space_id`, `user_id`, and `api_secret` to their values. You can also optionally set `default_headers` to set some headers that will be sent to all requests:
|
24
24
|
|
25
25
|
### Configuring a Service
|
26
26
|
|
@@ -31,9 +31,11 @@ space_id = 405
|
|
31
31
|
app_user_id = 512
|
32
32
|
app_user_key = "FKrO76r5VwJtBrqZawBspljbBNOxp5veKQQkOnZxucQ="
|
33
33
|
|
34
|
+
# default_headers is an optional param, that represents headers sent to all requests
|
34
35
|
PostFinanceCheckout.configure do |config|
|
35
36
|
config.user_id = app_user_id
|
36
37
|
config.authentication_key = app_user_key
|
38
|
+
config.default_headers = {"x-meta-custom-header": 'value-1', "x-meta-custom-header-2": 'value-2'}
|
37
39
|
end
|
38
40
|
|
39
41
|
# TransactionService
|
@@ -44,6 +44,9 @@ module PostFinanceCheckout
|
|
44
44
|
'Content-Type' => "application/json",
|
45
45
|
'User-Agent' => @user_agent
|
46
46
|
}
|
47
|
+
config.default_headers.each do |key, value|
|
48
|
+
@default_headers[key] = value
|
49
|
+
end
|
47
50
|
end
|
48
51
|
|
49
52
|
def self.default
|
@@ -98,7 +101,16 @@ module PostFinanceCheckout
|
|
98
101
|
url = build_request_url(path)
|
99
102
|
http_method = http_method.to_sym.downcase
|
100
103
|
|
104
|
+
default_headers = {
|
105
|
+
'x-meta-sdk-version': "3.2.0",
|
106
|
+
'x-meta-sdk-language': "ruby",
|
107
|
+
'x-meta-sdk-provider': "PostFinance Checkout",
|
108
|
+
'x-meta-sdk-language-version': RUBY_VERSION
|
109
|
+
}
|
110
|
+
|
101
111
|
header_params = @default_headers.merge(opts[:header_params] || {})
|
112
|
+
header_params = header_params.merge(default_headers)
|
113
|
+
|
102
114
|
query_params = opts[:query_params] || {}
|
103
115
|
form_params = opts[:form_params] || {}
|
104
116
|
|
@@ -90,7 +90,9 @@ module PostFinanceCheckout
|
|
90
90
|
|
91
91
|
attr_accessor :force_ending_format
|
92
92
|
|
93
|
-
|
93
|
+
attr_accessor :default_headers
|
94
|
+
|
95
|
+
def initialize(default_headers = {})
|
94
96
|
@scheme = 'https'
|
95
97
|
@host = 'checkout.postfinance.ch:443'
|
96
98
|
@base_path = '/api'
|
@@ -102,6 +104,7 @@ module PostFinanceCheckout
|
|
102
104
|
@inject_format = false
|
103
105
|
@force_ending_format = false
|
104
106
|
@logger = defined?(Rails) ? Rails.logger : Logger.new(STDOUT)
|
107
|
+
@default_headers = default_headers
|
105
108
|
|
106
109
|
yield(self) if block_given?
|
107
110
|
end
|
@@ -95,6 +95,9 @@ module PostFinanceCheckout
|
|
95
95
|
#
|
96
96
|
attr_accessor :state
|
97
97
|
|
98
|
+
# The statement descriptor explain charges or payments on bank statements.
|
99
|
+
attr_accessor :statement_descriptor
|
100
|
+
|
98
101
|
#
|
99
102
|
attr_accessor :succeeded_on
|
100
103
|
|
@@ -138,6 +141,7 @@ module PostFinanceCheckout
|
|
138
141
|
:'remaining_line_items' => :'remainingLineItems',
|
139
142
|
:'space_view_id' => :'spaceViewId',
|
140
143
|
:'state' => :'state',
|
144
|
+
:'statement_descriptor' => :'statementDescriptor',
|
141
145
|
:'succeeded_on' => :'succeededOn',
|
142
146
|
:'tax_amount' => :'taxAmount',
|
143
147
|
:'time_zone' => :'timeZone',
|
@@ -174,6 +178,7 @@ module PostFinanceCheckout
|
|
174
178
|
:'remaining_line_items' => :'Array<LineItem>',
|
175
179
|
:'space_view_id' => :'Integer',
|
176
180
|
:'state' => :'TransactionCompletionState',
|
181
|
+
:'statement_descriptor' => :'String',
|
177
182
|
:'succeeded_on' => :'DateTime',
|
178
183
|
:'tax_amount' => :'Float',
|
179
184
|
:'time_zone' => :'String',
|
@@ -298,6 +303,10 @@ module PostFinanceCheckout
|
|
298
303
|
self.state = attributes[:'state']
|
299
304
|
end
|
300
305
|
|
306
|
+
if attributes.has_key?(:'statementDescriptor')
|
307
|
+
self.statement_descriptor = attributes[:'statementDescriptor']
|
308
|
+
end
|
309
|
+
|
301
310
|
if attributes.has_key?(:'succeededOn')
|
302
311
|
self.succeeded_on = attributes[:'succeededOn']
|
303
312
|
end
|
@@ -335,6 +344,10 @@ module PostFinanceCheckout
|
|
335
344
|
invalid_properties.push('invalid value for "invoice_merchant_reference", the character length must be smaller than or equal to 100.')
|
336
345
|
end
|
337
346
|
|
347
|
+
if !@statement_descriptor.nil? && @statement_descriptor.to_s.length > 22
|
348
|
+
invalid_properties.push('invalid value for "statement_descriptor", the character length must be smaller than or equal to 22.')
|
349
|
+
end
|
350
|
+
|
338
351
|
invalid_properties
|
339
352
|
end
|
340
353
|
|
@@ -344,6 +357,7 @@ module PostFinanceCheckout
|
|
344
357
|
return false if !@external_id.nil? && @external_id.to_s.length > 100
|
345
358
|
return false if !@external_id.nil? && @external_id.to_s.length < 1
|
346
359
|
return false if !@invoice_merchant_reference.nil? && @invoice_merchant_reference.to_s.length > 100
|
360
|
+
return false if !@statement_descriptor.nil? && @statement_descriptor.to_s.length > 22
|
347
361
|
true
|
348
362
|
end
|
349
363
|
|
@@ -371,6 +385,16 @@ module PostFinanceCheckout
|
|
371
385
|
@invoice_merchant_reference = invoice_merchant_reference
|
372
386
|
end
|
373
387
|
|
388
|
+
# Custom attribute writer method with validation
|
389
|
+
# @param [Object] statement_descriptor Value to be assigned
|
390
|
+
def statement_descriptor=(statement_descriptor)
|
391
|
+
if !statement_descriptor.nil? && statement_descriptor.to_s.length > 22
|
392
|
+
fail ArgumentError, 'invalid value for "statement_descriptor", the character length must be smaller than or equal to 22.'
|
393
|
+
end
|
394
|
+
|
395
|
+
@statement_descriptor = statement_descriptor
|
396
|
+
end
|
397
|
+
|
374
398
|
# Checks equality by comparing each attribute.
|
375
399
|
# @param [Object] Object to be compared
|
376
400
|
def ==(o)
|
@@ -401,6 +425,7 @@ module PostFinanceCheckout
|
|
401
425
|
remaining_line_items == o.remaining_line_items &&
|
402
426
|
space_view_id == o.space_view_id &&
|
403
427
|
state == o.state &&
|
428
|
+
statement_descriptor == o.statement_descriptor &&
|
404
429
|
succeeded_on == o.succeeded_on &&
|
405
430
|
tax_amount == o.tax_amount &&
|
406
431
|
time_zone == o.time_zone &&
|
@@ -417,7 +442,7 @@ module PostFinanceCheckout
|
|
417
442
|
# Calculates hash code according to all attributes.
|
418
443
|
# @return [Fixnum] Hash code
|
419
444
|
def hash
|
420
|
-
[id, linked_space_id, linked_transaction, amount, base_line_items, created_by, created_on, external_id, failed_on, failure_reason, invoice_merchant_reference, labels, language, last_completion, line_item_version, line_items, mode, next_update_on, payment_information, planned_purge_date, processing_on, processor_reference, remaining_line_items, space_view_id, state, succeeded_on, tax_amount, time_zone, timeout_on, version].hash
|
445
|
+
[id, linked_space_id, linked_transaction, amount, base_line_items, created_by, created_on, external_id, failed_on, failure_reason, invoice_merchant_reference, labels, language, last_completion, line_item_version, line_items, mode, next_update_on, payment_information, planned_purge_date, processing_on, processor_reference, remaining_line_items, space_view_id, state, statement_descriptor, succeeded_on, tax_amount, time_zone, timeout_on, version].hash
|
421
446
|
end
|
422
447
|
|
423
448
|
# Builds the object from hash
|
@@ -32,6 +32,9 @@ module PostFinanceCheckout
|
|
32
32
|
# The line items which will be used to complete the transaction.
|
33
33
|
attr_accessor :line_items
|
34
34
|
|
35
|
+
# The statement descriptor explain charges or payments on bank statements.
|
36
|
+
attr_accessor :statement_descriptor
|
37
|
+
|
35
38
|
# The ID of the transaction which should be completed.
|
36
39
|
attr_accessor :transaction_id
|
37
40
|
|
@@ -42,6 +45,7 @@ module PostFinanceCheckout
|
|
42
45
|
:'invoice_merchant_reference' => :'invoiceMerchantReference',
|
43
46
|
:'last_completion' => :'lastCompletion',
|
44
47
|
:'line_items' => :'lineItems',
|
48
|
+
:'statement_descriptor' => :'statementDescriptor',
|
45
49
|
:'transaction_id' => :'transactionId'
|
46
50
|
}
|
47
51
|
end
|
@@ -53,6 +57,7 @@ module PostFinanceCheckout
|
|
53
57
|
:'invoice_merchant_reference' => :'String',
|
54
58
|
:'last_completion' => :'BOOLEAN',
|
55
59
|
:'line_items' => :'Array<CompletionLineItemCreate>',
|
60
|
+
:'statement_descriptor' => :'String',
|
56
61
|
:'transaction_id' => :'Integer'
|
57
62
|
}
|
58
63
|
end
|
@@ -83,6 +88,10 @@ module PostFinanceCheckout
|
|
83
88
|
end
|
84
89
|
end
|
85
90
|
|
91
|
+
if attributes.has_key?(:'statementDescriptor')
|
92
|
+
self.statement_descriptor = attributes[:'statementDescriptor']
|
93
|
+
end
|
94
|
+
|
86
95
|
if attributes.has_key?(:'transactionId')
|
87
96
|
self.transaction_id = attributes[:'transactionId']
|
88
97
|
end
|
@@ -112,6 +121,10 @@ module PostFinanceCheckout
|
|
112
121
|
invalid_properties.push('invalid value for "last_completion", last_completion cannot be nil.')
|
113
122
|
end
|
114
123
|
|
124
|
+
if !@statement_descriptor.nil? && @statement_descriptor.to_s.length > 22
|
125
|
+
invalid_properties.push('invalid value for "statement_descriptor", the character length must be smaller than or equal to 22.')
|
126
|
+
end
|
127
|
+
|
115
128
|
if @transaction_id.nil?
|
116
129
|
invalid_properties.push('invalid value for "transaction_id", transaction_id cannot be nil.')
|
117
130
|
end
|
@@ -127,6 +140,7 @@ module PostFinanceCheckout
|
|
127
140
|
return false if @external_id.to_s.length < 1
|
128
141
|
return false if !@invoice_merchant_reference.nil? && @invoice_merchant_reference.to_s.length > 100
|
129
142
|
return false if @last_completion.nil?
|
143
|
+
return false if !@statement_descriptor.nil? && @statement_descriptor.to_s.length > 22
|
130
144
|
return false if @transaction_id.nil?
|
131
145
|
true
|
132
146
|
end
|
@@ -159,6 +173,16 @@ module PostFinanceCheckout
|
|
159
173
|
@invoice_merchant_reference = invoice_merchant_reference
|
160
174
|
end
|
161
175
|
|
176
|
+
# Custom attribute writer method with validation
|
177
|
+
# @param [Object] statement_descriptor Value to be assigned
|
178
|
+
def statement_descriptor=(statement_descriptor)
|
179
|
+
if !statement_descriptor.nil? && statement_descriptor.to_s.length > 22
|
180
|
+
fail ArgumentError, 'invalid value for "statement_descriptor", the character length must be smaller than or equal to 22.'
|
181
|
+
end
|
182
|
+
|
183
|
+
@statement_descriptor = statement_descriptor
|
184
|
+
end
|
185
|
+
|
162
186
|
# Checks equality by comparing each attribute.
|
163
187
|
# @param [Object] Object to be compared
|
164
188
|
def ==(o)
|
@@ -168,6 +192,7 @@ module PostFinanceCheckout
|
|
168
192
|
invoice_merchant_reference == o.invoice_merchant_reference &&
|
169
193
|
last_completion == o.last_completion &&
|
170
194
|
line_items == o.line_items &&
|
195
|
+
statement_descriptor == o.statement_descriptor &&
|
171
196
|
transaction_id == o.transaction_id
|
172
197
|
end
|
173
198
|
|
@@ -180,7 +205,7 @@ module PostFinanceCheckout
|
|
180
205
|
# Calculates hash code according to all attributes.
|
181
206
|
# @return [Fixnum] Hash code
|
182
207
|
def hash
|
183
|
-
[external_id, invoice_merchant_reference, last_completion, line_items, transaction_id].hash
|
208
|
+
[external_id, invoice_merchant_reference, last_completion, line_items, statement_descriptor, transaction_id].hash
|
184
209
|
end
|
185
210
|
|
186
211
|
# Builds the object from hash
|
@@ -11,6 +11,7 @@ class TestConditionTypeAll < Test::Unit::TestCase
|
|
11
11
|
PostFinanceCheckout.configure do |config|
|
12
12
|
config.user_id = app_user_id
|
13
13
|
config.authentication_key = app_user_key
|
14
|
+
config.default_headers = {"x-meta-header-ruby": 'value', "x-meta-header-ruby-2": 'value2'}
|
14
15
|
end
|
15
16
|
|
16
17
|
condition_type_service = PostFinanceCheckout::ConditionTypeService.new
|
@@ -12,6 +12,7 @@ class TestTransactionCreate < Test::Unit::TestCase
|
|
12
12
|
PostFinanceCheckout.configure do |config|
|
13
13
|
config.user_id = app_user_id
|
14
14
|
config.authentication_key = app_user_key
|
15
|
+
config.default_headers = {"x-meta-header-ruby": 'value', "x-meta-header-ruby-2": 'value2'}
|
15
16
|
end
|
16
17
|
|
17
18
|
transaction_service = PostFinanceCheckout::TransactionService.new
|
@@ -12,6 +12,7 @@ class TestTransactionCreate < Test::Unit::TestCase
|
|
12
12
|
PostFinanceCheckout.configure do |config|
|
13
13
|
config.user_id = app_user_id
|
14
14
|
config.authentication_key = app_user_key
|
15
|
+
config.default_headers = {"x-meta-header-ruby": 'value', "x-meta-header-ruby-2": 'value2'}
|
15
16
|
end
|
16
17
|
|
17
18
|
transaction_service = PostFinanceCheckout::TransactionService.new
|
@@ -1,5 +1,5 @@
|
|
1
1
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/2.4.0/gems/ffi-1.15.5/ext/ffi_c
|
2
|
-
/opt/hostedtoolcache/Ruby/2.4.1/x64/bin/ruby -r ./
|
2
|
+
/opt/hostedtoolcache/Ruby/2.4.1/x64/bin/ruby -r ./siteconf20221004-1672-1r0gzc9.rb extconf.rb
|
3
3
|
checking for ffi.h... yes
|
4
4
|
checking for ffi_prep_closure_loc() in -lffi... yes
|
5
5
|
checking for ffi_prep_cif_var()... yes
|
@@ -367,4 +367,4 @@ linking shared-object ffi_c.so
|
|
367
367
|
|
368
368
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/2.4.0/gems/ffi-1.15.5/ext/ffi_c
|
369
369
|
make "DESTDIR=" install
|
370
|
-
/usr/bin/install -c -m 0755 ffi_c.so ./.gem.
|
370
|
+
/usr/bin/install -c -m 0755 ffi_c.so ./.gem.20221004-1672-e9ihcz
|
@@ -1,5 +1,5 @@
|
|
1
1
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/2.4.0/gems/json-2.6.2/ext/json
|
2
|
-
/opt/hostedtoolcache/Ruby/2.4.1/x64/bin/ruby -r ./
|
2
|
+
/opt/hostedtoolcache/Ruby/2.4.1/x64/bin/ruby -r ./siteconf20221004-1672-1xl6znz.rb extconf.rb
|
3
3
|
creating Makefile
|
4
4
|
|
5
5
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/2.4.0/gems/json-2.6.2/ext/json
|
@@ -176,7 +176,7 @@ In file included from /opt/hostedtoolcache/Ruby/2.4.1/x64/include/ruby-2.4.0/rub
|
|
176
176
|
cc1: warning: unrecognized command line option ‘-Wno-self-assign’
|
177
177
|
cc1: warning: unrecognized command line option ‘-Wno-constant-logical-operand’
|
178
178
|
cc1: warning: unrecognized command line option ‘-Wno-parentheses-equality’
|
179
|
-
/usr/bin/ld: /tmp/
|
179
|
+
/usr/bin/ld: /tmp/cczRQGNV.o: in function `t':
|
180
180
|
/home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/2.4.0/gems/json-2.6.2/ext/json/ext/parser/conftest.c:16: undefined reference to `rb_enc_interned_str'
|
181
181
|
collect2: error: ld returned 1 exit status
|
182
182
|
checked program was:
|
@@ -31,8 +31,8 @@ rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
|
|
31
31
|
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
32
32
|
vendorlibdir = $(vendordir)/$(ruby_version)
|
33
33
|
vendordir = $(rubylibprefix)/vendor_ruby
|
34
|
-
sitearchdir = $(DESTDIR)./.gem.
|
35
|
-
sitelibdir = $(DESTDIR)./.gem.
|
34
|
+
sitearchdir = $(DESTDIR)./.gem.20221004-1672-e9ihcz
|
35
|
+
sitelibdir = $(DESTDIR)./.gem.20221004-1672-e9ihcz
|
36
36
|
sitedir = $(rubylibprefix)/site_ruby
|
37
37
|
rubyarchdir = $(rubylibdir)/$(arch)
|
38
38
|
rubylibdir = $(rubylibprefix)/$(ruby_version)
|
@@ -138,7 +138,7 @@ LIBS = $(LIBRUBYARG_SHARED) -lffi -lpthread -lgmp -ldl -lcrypt -lm -lc
|
|
138
138
|
ORIG_SRCS = AbstractMemory.c ArrayType.c Buffer.c Call.c ClosurePool.c DynamicLibrary.c Function.c FunctionInfo.c LastError.c LongDouble.c MappedType.c MemoryPointer.c MethodHandle.c Platform.c Pointer.c Struct.c StructByValue.c StructLayout.c Thread.c Type.c Types.c Variadic.c ffi.c
|
139
139
|
SRCS = $(ORIG_SRCS)
|
140
140
|
OBJS = AbstractMemory.o ArrayType.o Buffer.o Call.o ClosurePool.o DynamicLibrary.o Function.o FunctionInfo.o LastError.o LongDouble.o MappedType.o MemoryPointer.o MethodHandle.o Platform.o Pointer.o Struct.o StructByValue.o StructLayout.o Thread.o Type.o Types.o Variadic.o ffi.o
|
141
|
-
HDRS = $(srcdir)/Struct.h $(srcdir)/
|
141
|
+
HDRS = $(srcdir)/Struct.h $(srcdir)/Type.h $(srcdir)/LastError.h $(srcdir)/Platform.h $(srcdir)/Function.h $(srcdir)/Thread.h $(srcdir)/ClosurePool.h $(srcdir)/MappedType.h $(srcdir)/LongDouble.h $(srcdir)/ArrayType.h $(srcdir)/rbffi.h $(srcdir)/MethodHandle.h $(srcdir)/Call.h $(srcdir)/Pointer.h $(srcdir)/MemoryPointer.h $(srcdir)/DynamicLibrary.h $(srcdir)/extconf.h $(srcdir)/Types.h $(srcdir)/compat.h $(srcdir)/StructByValue.h $(srcdir)/AbstractMemory.h $(srcdir)/rbffi_endian.h
|
142
142
|
LOCAL_HDRS =
|
143
143
|
TARGET = ffi_c
|
144
144
|
TARGET_NAME = ffi_c
|
@@ -31,8 +31,8 @@ rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
|
|
31
31
|
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
32
32
|
vendorlibdir = $(vendordir)/$(ruby_version)
|
33
33
|
vendordir = $(rubylibprefix)/vendor_ruby
|
34
|
-
sitearchdir = $(DESTDIR)./.gem.
|
35
|
-
sitelibdir = $(DESTDIR)./.gem.
|
34
|
+
sitearchdir = $(DESTDIR)./.gem.20221004-1672-yz8rc4
|
35
|
+
sitelibdir = $(DESTDIR)./.gem.20221004-1672-yz8rc4
|
36
36
|
sitedir = $(rubylibprefix)/site_ruby
|
37
37
|
rubyarchdir = $(rubylibdir)/$(arch)
|
38
38
|
rubylibdir = $(rubylibprefix)/$(ruby_version)
|
@@ -31,8 +31,8 @@ rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
|
|
31
31
|
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
32
32
|
vendorlibdir = $(vendordir)/$(ruby_version)
|
33
33
|
vendordir = $(rubylibprefix)/vendor_ruby
|
34
|
-
sitearchdir = $(DESTDIR)./.gem.
|
35
|
-
sitelibdir = $(DESTDIR)./.gem.
|
34
|
+
sitearchdir = $(DESTDIR)./.gem.20221004-1672-e9d8ff
|
35
|
+
sitelibdir = $(DESTDIR)./.gem.20221004-1672-e9d8ff
|
36
36
|
sitedir = $(rubylibprefix)/site_ruby
|
37
37
|
rubyarchdir = $(rubylibdir)/$(arch)
|
38
38
|
rubylibdir = $(rubylibprefix)/$(ruby_version)
|
@@ -31,8 +31,8 @@ rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
|
|
31
31
|
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
32
32
|
vendorlibdir = $(vendordir)/$(ruby_version)
|
33
33
|
vendordir = $(rubylibprefix)/vendor_ruby
|
34
|
-
sitearchdir = $(DESTDIR)./.gem.
|
35
|
-
sitelibdir = $(DESTDIR)./.gem.
|
34
|
+
sitearchdir = $(DESTDIR)./.gem.20221004-1672-16heldf
|
35
|
+
sitelibdir = $(DESTDIR)./.gem.20221004-1672-16heldf
|
36
36
|
sitedir = $(rubylibprefix)/site_ruby
|
37
37
|
rubyarchdir = $(rubylibdir)/$(arch)
|
38
38
|
rubylibdir = $(rubylibprefix)/$(ruby_version)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: postfinancecheckout-ruby-sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- wallee AG
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-10-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|