Skip to content

Commit

Permalink
Run bundle update to update all gems.
Browse files Browse the repository at this point in the history
Fix RuboCop violations after update.
  • Loading branch information
ppostma committed Dec 6, 2024
1 parent 0c543f8 commit e020f26
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 51 deletions.
90 changes: 44 additions & 46 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,71 +8,69 @@ PATH
GEM
remote: https://rubygems.org/
specs:
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
ast (2.4.2)
base64 (0.2.0)
bigdecimal (3.1.8)
crack (0.4.5)
crack (1.0.0)
bigdecimal
rexml
diff-lcs (1.5.0)
hashdiff (1.1.0)
json (2.7.1)
jwt (2.7.1)
diff-lcs (1.5.1)
hashdiff (1.1.2)
json (2.9.0)
jwt (2.9.3)
base64
language_server-protocol (3.17.0.3)
logger (1.6.2)
parallel (1.24.0)
parser (3.2.2.4)
parallel (1.26.3)
parser (3.3.6.0)
ast (~> 2.4.1)
racc
public_suffix (5.0.4)
racc (1.7.3)
public_suffix (6.0.1)
racc (1.8.1)
rainbow (3.1.1)
rake (13.1.0)
regexp_parser (2.8.3)
rexml (3.2.6)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
rspec-mocks (~> 3.12.0)
rspec-core (3.12.2)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.3)
rake (13.2.1)
regexp_parser (2.9.3)
rexml (3.3.9)
rspec (3.13.0)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
rspec-mocks (~> 3.13.0)
rspec-core (3.13.2)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.6)
rspec-support (~> 3.13.0)
rspec-mocks (3.13.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-support (3.12.1)
rubocop (1.59.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.2)
rubocop (1.69.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.2.4)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.30.0, < 2.0)
regexp_parser (>= 2.9.3, < 3.0)
rubocop-ast (>= 1.36.2, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
rubocop-capybara (2.20.0)
rubocop (~> 1.41)
rubocop-factory_bot (2.25.0)
rubocop (~> 1.33)
rubocop-performance (1.20.1)
unicode-display_width (>= 2.4.0, < 4.0)
rubocop-ast (1.36.2)
parser (>= 3.3.1.0)
rubocop-performance (1.23.0)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
rubocop-rake (0.6.0)
rubocop (~> 1.0)
rubocop-rspec (2.26.0)
rubocop (~> 1.40)
rubocop-capybara (~> 2.17)
rubocop-factory_bot (~> 2.22)
rubocop-rspec (3.2.0)
rubocop (~> 1.61)
ruby-progressbar (1.13.0)
timecop (0.9.8)
unicode-display_width (2.5.0)
webmock (3.19.1)
timecop (0.9.10)
unicode-display_width (3.1.2)
unicode-emoji (~> 4.0, >= 4.0.4)
unicode-emoji (4.0.4)
webmock (3.24.0)
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/tikkie/api/resources/list.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class List < Base
def initialize(config, options = {})
@page_number = options.fetch(:page_number, 0)
@page_size = options.fetch(:page_size, 50)
super(config, options)
super
end

def total_elements
Expand Down
2 changes: 1 addition & 1 deletion lib/tikkie/api/resources/payment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Payment < Base
def initialize(config, options = {})
@payment_request_token = options.delete(:payment_request_token)
@payment_token = options.delete(:payment_token)
super(config, options)
super
end

def payment_token
Expand Down
2 changes: 1 addition & 1 deletion lib/tikkie/api/resources/payment_request.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class PaymentRequest < Base

def initialize(config, options = {})
@payment_request_token = options.delete(:payment_request_token)
super(config, options)
super
end

def payment_request_token
Expand Down
2 changes: 1 addition & 1 deletion lib/tikkie/api/resources/payments.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Payments < List

def initialize(config, options = {})
@payment_request_token = options.delete(:payment_request_token)
super(config, options)
super
end

def each(&block)
Expand Down
2 changes: 1 addition & 1 deletion lib/tikkie/api/resources/refund.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def initialize(config, options = {})
@payment_request_token = options.delete(:payment_request_token)
@payment_token = options.delete(:payment_token)
@refund_token = options.delete(:refund_token)
super(config, options)
super
end

def refund_token
Expand Down

0 comments on commit e020f26

Please sign in to comment.