Skip to content

Commit

Permalink
Use max_by for longest_cmd_name_length (#628)
Browse files Browse the repository at this point in the history
Co-authored-by: Andy Waite <andyw8@users.noreply.github.com>
  • Loading branch information
andyw8 and andyw8 committed Jul 4, 2023
1 parent f67b657 commit 5e87f3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/irb/cmd/show_cmds.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ShowCmds < Nop
def execute(*args)
commands_info = IRB::ExtendCommandBundle.all_commands_info
commands_grouped_by_categories = commands_info.group_by { |cmd| cmd[:category] }
longest_cmd_name_length = commands_info.map { |c| c[:display_name] }.max { |a, b| a.length <=> b.length }.length
longest_cmd_name_length = commands_info.map { |c| c[:display_name].length }.max

output = StringIO.new

Expand Down

0 comments on commit 5e87f3b

Please sign in to comment.