wallee-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 843a5ea79e38a9c29f88c58303da6b256c2d7dfd
4
- data.tar.gz: b863ca9fbc443b01c576da369e101088577660ea
3
+ metadata.gz: a31de5a2d4ecf147f1bf0f276703d68a2cad7310
4
+ data.tar.gz: 1098372b4106c6a26036fdb8c399555c581009dc
5
5
  SHA512:
6
- metadata.gz: 141012e0e87f09bfd7237d22eb0880b2eccff3c1f89efd4eeabc6e42e0e5a138c00df9c22b1376237a33312c7dc998065c3dca7fe00eac80aadc9eb1af6cf277
7
- data.tar.gz: a563e40cf04964fd11f71f6b6e2b384174d5bb085e3d758aeff80b1d1829859ce910b0381a515a8d0f1dabe7f74f524785195671beaa805083a87f8ddccc40b9
6
+ metadata.gz: 38198e35d5dd5f5e1d7805d6907499dd9edc59e1b7fccd25a71ce0b77a051973b806c239dc53a569527e9d489ba4bdcfa354e1982dfe1e7a0dc48e55a8a5edbf
7
+ data.tar.gz: 959901b14c320d5661b7e68f08b8115d9a7a1b511c52b17944f913a12739b9e1920ccce8aa23012b3ef7cd8b1ab633c1e23f634e802b17d85820a44612a4fafe
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- wallee-ruby-sdk (3.1.5)
4
+ wallee-ruby-sdk (3.2.0)
5
5
  addressable (~> 2.3, >= 2.3.0)
6
6
  json (~> 2.3, >= 2.3.0)
7
7
  typhoeus (~> 1.0, >= 1.0.1)
data/README.md CHANGED
@@ -20,7 +20,7 @@ $ gem install wallee-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 [wallee
23
- account dashboard](https://app-wallee.com/account/select). Set `space_id`, `user_id`, and `api_secret` to their values:
23
+ account dashboard](https://app-wallee.com/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
  Wallee.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 Wallee
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 Wallee
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': "wallee",
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 Wallee
90
90
 
91
91
  attr_accessor :force_ending_format
92
92
 
93
- def initialize
93
+ attr_accessor :default_headers
94
+
95
+ def initialize(default_headers = {})
94
96
  @scheme = 'https'
95
97
  @host = 'app-wallee.com:443'
96
98
  @base_path = '/api'
@@ -102,6 +104,7 @@ module Wallee
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 Wallee
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 Wallee
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 Wallee
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 Wallee
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 Wallee
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 Wallee
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 Wallee
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 Wallee
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 Wallee
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 Wallee
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 Wallee
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 Wallee
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 Wallee
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 Wallee
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 Wallee
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 Wallee
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 Wallee
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 Wallee
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
@@ -16,5 +16,5 @@ limitations under the License.
16
16
  =end
17
17
 
18
18
  module Wallee
19
- VERSION = '3.1.5'
19
+ VERSION = '3.2.0'
20
20
  end
@@ -11,6 +11,7 @@ class TestConditionTypeAll < Test::Unit::TestCase
11
11
  Wallee.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 = Wallee::ConditionTypeService.new
@@ -12,6 +12,7 @@ class TestTransactionCreate < Test::Unit::TestCase
12
12
  Wallee.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 = Wallee::TransactionService.new
@@ -12,6 +12,7 @@ class TestTransactionCreate < Test::Unit::TestCase
12
12
  Wallee.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 = Wallee::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 ./siteconf20220920-1640-11ub6nx.rb extconf.rb
2
+ /opt/hostedtoolcache/Ruby/2.4.1/x64/bin/ruby -r ./siteconf20221004-1674-18xqn89.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.20220920-1640-1as9lc
370
+ /usr/bin/install -c -m 0755 ffi_c.so ./.gem.20221004-1674-1ii22zc
@@ -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 ./siteconf20220920-1640-12w2j2l.rb extconf.rb
2
+ /opt/hostedtoolcache/Ruby/2.4.1/x64/bin/ruby -r ./siteconf20221004-1674-55h4z.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/ccpVzI2p.o: in function `t':
179
+ /usr/bin/ld: /tmp/ccJuc7FH.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.20220920-1640-1as9lc
35
- sitelibdir = $(DESTDIR)./.gem.20220920-1640-1as9lc
34
+ sitearchdir = $(DESTDIR)./.gem.20221004-1674-1ii22zc
35
+ sitelibdir = $(DESTDIR)./.gem.20221004-1674-1ii22zc
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)/Call.h $(srcdir)/Types.h $(srcdir)/LongDouble.h $(srcdir)/DynamicLibrary.h $(srcdir)/MethodHandle.h $(srcdir)/Function.h $(srcdir)/Pointer.h $(srcdir)/Thread.h $(srcdir)/ArrayType.h $(srcdir)/Type.h $(srcdir)/StructByValue.h $(srcdir)/compat.h $(srcdir)/MappedType.h $(srcdir)/AbstractMemory.h $(srcdir)/extconf.h $(srcdir)/Platform.h $(srcdir)/MemoryPointer.h $(srcdir)/rbffi.h $(srcdir)/Struct.h $(srcdir)/rbffi_endian.h $(srcdir)/LastError.h $(srcdir)/ClosurePool.h
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.20220920-1640-1yxbwg4
35
- sitelibdir = $(DESTDIR)./.gem.20220920-1640-1yxbwg4
34
+ sitearchdir = $(DESTDIR)./.gem.20221004-1674-vkhybr
35
+ sitelibdir = $(DESTDIR)./.gem.20221004-1674-vkhybr
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.20220920-1640-1etspin
35
- sitelibdir = $(DESTDIR)./.gem.20220920-1640-1etspin
34
+ sitearchdir = $(DESTDIR)./.gem.20221004-1674-1ie23ji
35
+ sitelibdir = $(DESTDIR)./.gem.20221004-1674-1ie23ji
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.20220920-1640-rst3r7
35
- sitelibdir = $(DESTDIR)./.gem.20220920-1640-rst3r7
34
+ sitearchdir = $(DESTDIR)./.gem.20221004-1674-r3wbhm
35
+ sitelibdir = $(DESTDIR)./.gem.20221004-1674-r3wbhm
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: wallee-ruby-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.5
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-09-20 00:00:00.000000000 Z
11
+ date: 2022-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus