1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/lib/pry/commands/show_command.rb
Reginald Tan 3836179181 Depracated show-command and moved its functionality to show-source
Also, show-doc on commands now displays their banner
2012-08-14 00:18:53 -04:00

22 lines
503 B
Ruby

class Pry
Pry::Commands.create_command "show-command" do
group 'Introspection'
description "Show the source for CMD."
def process(*args)
target = target()
opts = Slop.parse!(args) do |opt|
opt.banner unindent <<-USAGE
NOTE: show-command is DEPRACTED. Use show-source [command_name] instead.
USAGE
opt.on :h, :help, "This message." do
output.puts opt.help
end
end
render_output opts.banner
end
end
end