brew/Library/Homebrew/cmd/commands.rb

59 lines
1.6 KiB
Ruby
Raw Normal View History

2016-04-08 16:28:43 +02:00
#: * `commands` [`--quiet` [`--include-aliases`]]:
#: Show a list of built-in and external commands.
#:
#: If `--quiet` is passed, list only the names of commands without the header.
#: With `--include-aliases`, the aliases of internal commands will be included.
module Homebrew
def commands
if ARGV.include? "--quiet"
cmds = internal_commands + external_commands
cmds += internal_developer_commands
cmds += HOMEBREW_INTERNAL_COMMAND_ALIASES.keys if ARGV.include? "--include-aliases"
puts_columns cmds.sort
else
# Find commands in Homebrew/cmd
puts "Built-in commands"
puts_columns internal_commands
2015-09-12 19:24:41 +08:00
# Find commands in Homebrew/dev-cmd
puts
puts "Built-in developer commands"
puts_columns internal_developer_commands
2015-09-12 19:24:41 +08:00
# Find commands in the path
unless (exts = external_commands).empty?
puts
puts "External commands"
puts_columns exts
end
end
end
def internal_commands
2016-01-18 00:55:50 +01:00
find_internal_commands HOMEBREW_LIBRARY_PATH/"cmd"
2015-09-12 19:24:41 +08:00
end
def internal_developer_commands
2016-01-18 00:55:50 +01:00
find_internal_commands HOMEBREW_LIBRARY_PATH/"dev-cmd"
end
def external_commands
2016-09-10 10:24:56 +01:00
paths.each_with_object([]) do |path, cmds|
2016-01-18 00:55:50 +01:00
Dir["#{path}/brew-*"].each do |file|
next unless File.executable?(file)
cmd = File.basename(file, ".rb")[5..-1]
cmds << cmd unless cmd.include?(".")
end
end.sort
end
private
def find_internal_commands(directory)
2016-09-10 10:24:56 +01:00
directory.children.each_with_object([]) do |f, cmds|
2016-01-18 00:55:50 +01:00
cmds << f.basename.to_s.sub(/\.(?:rb|sh)$/, "") if f.file?
end
end
end