Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the minor-and-patch group with 4 updates #2088

Merged
merged 4 commits into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ group :development do
gem "rubocop-rake", "~> 0.6.0", require: false
gem "rubocop-shopify", "~> 2.15", require: false
gem "rubocop-sorbet", "~> 0.8", require: false
gem "rubocop", "~> 1.63"
gem "rubocop", "~> 1.64"
gem "simplecov", require: false
gem "syntax_tree", ">= 6.1.1", "< 7"

Expand Down
26 changes: 13 additions & 13 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ GEM
reline (>= 0.4.2)
json (2.7.2)
language_server-protocol (3.17.0.3)
minitest (5.23.0)
minitest (5.23.1)
minitest-reporters (1.6.1)
ansi
builder
Expand All @@ -48,18 +48,18 @@ GEM
prism (0.29.0)
psych (5.1.2)
stringio
racc (1.7.3)
racc (1.8.0)
rainbow (3.1.1)
rake (13.2.1)
rbi (0.1.13)
prism (>= 0.18.0, < 1.0.0)
sorbet-runtime (>= 0.5.9204)
regexp_parser (2.9.1)
regexp_parser (2.9.2)
reline (0.5.0)
io-console (~> 0.5)
rexml (3.2.8)
strscan (>= 3.0.9)
rubocop (1.63.5)
rubocop (1.64.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
Expand Down Expand Up @@ -91,14 +91,14 @@ GEM
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
sorbet (0.5.11385)
sorbet-static (= 0.5.11385)
sorbet-runtime (0.5.11385)
sorbet-static (0.5.11385-universal-darwin)
sorbet-static (0.5.11385-x86_64-linux)
sorbet-static-and-runtime (0.5.11385)
sorbet (= 0.5.11385)
sorbet-runtime (= 0.5.11385)
sorbet (0.5.11391)
sorbet-static (= 0.5.11391)
sorbet-runtime (0.5.11391)
sorbet-static (0.5.11391-universal-darwin)
sorbet-static (0.5.11391-x86_64-linux)
sorbet-static-and-runtime (0.5.11391)
sorbet (= 0.5.11391)
sorbet-runtime (= 0.5.11391)
spoom (1.3.0)
erubi (>= 1.10.0)
prism (>= 0.19.0)
Expand Down Expand Up @@ -140,7 +140,7 @@ DEPENDENCIES
psych (~> 5.1)
rake (~> 13.2)
rdoc!
rubocop (~> 1.63)
rubocop (~> 1.64)
rubocop-md (~> 1.2.0)
rubocop-minitest (~> 0.35.0)
rubocop-rake (~> 0.6.0)
Expand Down
10 changes: 4 additions & 6 deletions lib/ruby_indexer/lib/ruby_indexer/index.rb
Original file line number Diff line number Diff line change
Expand Up @@ -249,12 +249,10 @@ def resolve_method(method_name, receiver_name)
return unless owner_entries && method_entries

owner_name = T.must(owner_entries.first).name
T.cast(
method_entries.grep(Entry::Member).select do |entry|
T.cast(entry, Entry::Member).owner&.name == owner_name
end,
T::Array[Entry::Member],
)

method_entries.grep(Entry::Member).select do |entry|
entry.owner&.name == owner_name
end
end

private
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading