Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mbj committed Jun 10, 2024
1 parent 0fea2e7 commit 1ced37f
Show file tree
Hide file tree
Showing 16 changed files with 32 additions and 30 deletions.
30 changes: 16 additions & 14 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,24 @@ PATH
parser (~> 3.3.0)
regexp_parser (~> 2.9.0)
sorbet-runtime (~> 0.5.0)
unparser (~> 0.6.9)
unparser (~> 0.6.14)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
diff-lcs (1.5.1)
json (2.7.1)
json (2.7.2)
language_server-protocol (3.17.0.3)
parallel (1.24.0)
parser (3.3.0.5)
parallel (1.25.1)
parser (3.3.2.0)
ast (~> 2.4.1)
racc
racc (1.7.3)
racc (1.8.0)
rainbow (3.1.1)
regexp_parser (2.9.0)
rexml (3.2.6)
regexp_parser (2.9.2)
rexml (3.2.9)
strscan
rspec (3.13.0)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
Expand All @@ -35,27 +36,28 @@ GEM
rspec-its (1.3.0)
rspec-core (>= 3.0.0)
rspec-expectations (>= 3.0.0)
rspec-mocks (3.13.0)
rspec-mocks (3.13.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.1)
rubocop (1.61.0)
rubocop (1.64.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
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)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.1)
parser (>= 3.3.0.4)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
ruby-progressbar (1.13.0)
sorbet-runtime (0.5.11284)
sorbet-runtime (0.5.11422)
strscan (3.1.0)
unicode-display_width (2.5.0)
unparser (0.6.13)
unparser (0.6.14)
diff-lcs (~> 1.3)
parser (>= 3.3.0)

Expand Down
4 changes: 2 additions & 2 deletions lib/mutant/cli/command/environment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Environment < self
private

def initialize(attributes)
super(attributes)
super
@config = Config::DEFAULT.with(
coverage_criteria: Config::CoverageCriteria::EMPTY
)
Expand Down Expand Up @@ -60,7 +60,7 @@ def add_matcher(attribute, value)
end

def effective_options
instance_of?(Environment) ? EMPTY_ARRAY : super()
instance_of?(Environment) ? EMPTY_ARRAY : super
end

# rubocop:disable Metrics/MethodLength
Expand Down
2 changes: 1 addition & 1 deletion lib/mutant/integration/rspec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Rspec < self
private_constant(*constants(false))

def freeze
super() if @setup_elapsed
super if @setup_elapsed
self
end

Expand Down
2 changes: 1 addition & 1 deletion lib/mutant/mutator/node/break.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Break < Generic
private

def dispatch
super()
super
emit_singletons
children.each_index(&method(:delete_child))
end
Expand Down
2 changes: 1 addition & 1 deletion lib/mutant/mutator/node/index.rb
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class Assign < self
private

def dispatch
super()
super

return if left_op_assignment?

Expand Down
2 changes: 1 addition & 1 deletion lib/mutant/mutator/node/kwbegin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Kwbegin < Generic
private

def dispatch
super()
super
emit_singletons
end

Expand Down
2 changes: 1 addition & 1 deletion lib/mutant/mutator/node/named_value/access.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Ivar < Access

def dispatch
emit_attribute_read
super()
super
end

def emit_attribute_read
Expand Down
2 changes: 1 addition & 1 deletion lib/mutant/mutator/node/next.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Next < Generic
private

def dispatch
super()
super
emit_singletons
children.each_index(&method(:delete_child))
emit(s(:break, *children))
Expand Down
2 changes: 1 addition & 1 deletion lib/mutant/mutator/node/send/conditional.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Conditional < self
private

def dispatch
super()
super
emit(s(:send, *children))
end

Expand Down
2 changes: 1 addition & 1 deletion lib/mutant/mutator/node/yield.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Yield < Generic
private

def dispatch
super()
super
emit_singletons
children.each_index(&method(:delete_child))
end
Expand Down
2 changes: 1 addition & 1 deletion lib/mutant/reporter/cli/printer/status_progressive.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def run
private

def object
super().payload
super.payload
end

def mutations_per_second
Expand Down
2 changes: 1 addition & 1 deletion lib/mutant/reporter/cli/printer/test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def run
private

def object
super().payload
super.payload
end

def tests_per_second
Expand Down
2 changes: 1 addition & 1 deletion lib/mutant/subject/method/instance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def prepare
.instance_variable_get(:@memoized_methods)
.delete(name)

super()
super
end

private
Expand Down
2 changes: 1 addition & 1 deletion lib/mutant/timer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Deadline
include Anima.new(:timer, :allowed_time)

def initialize(*arguments)
super(*arguments)
super
@start_at = timer.now
end

Expand Down
2 changes: 1 addition & 1 deletion mutant.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency('parser', '~> 3.3.0')
gem.add_runtime_dependency('regexp_parser', '~> 2.9.0')
gem.add_runtime_dependency('sorbet-runtime', '~> 0.5.0')
gem.add_runtime_dependency('unparser', '~> 0.6.9')
gem.add_runtime_dependency('unparser', '~> 0.6.14')

gem.add_development_dependency('rspec', '~> 3.10')
gem.add_development_dependency('rspec-core', '~> 3.10')
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/mutant/parallel/driver_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def apply
context 'when stopped' do
def apply
subject.stop
super()
super
end

let(:raw_expectations) do
Expand Down

0 comments on commit 1ced37f

Please sign in to comment.