2012-08-11 20:22:29 -04:00
|
|
|
class Pry
|
2012-08-11 21:26:59 -04:00
|
|
|
Pry::Commands.create_command "stat" do
|
|
|
|
group 'Introspection'
|
|
|
|
description "View method information and set _file_ and _dir_ locals."
|
|
|
|
command_options :shellwords => false
|
|
|
|
|
2012-08-11 20:22:29 -04:00
|
|
|
banner <<-BANNER
|
|
|
|
Usage: stat [OPTIONS] [METH]
|
|
|
|
Show method information for method METH and set _file_ and _dir_ locals.
|
|
|
|
e.g: stat hello_method
|
|
|
|
BANNER
|
|
|
|
|
|
|
|
def options(opt)
|
|
|
|
method_options(opt)
|
|
|
|
end
|
|
|
|
|
|
|
|
def process
|
|
|
|
meth = method_object
|
2012-08-25 17:02:39 -04:00
|
|
|
aliases = meth.aliases
|
|
|
|
|
2012-08-11 20:22:29 -04:00
|
|
|
output.puts unindent <<-EOS
|
|
|
|
Method Information:
|
|
|
|
--
|
|
|
|
Name: #{meth.name}
|
2012-08-25 17:02:39 -04:00
|
|
|
Alias#{ "es" if aliases.length > 1 }: #{ aliases.any? ? aliases.join(", ") : "None." }
|
2012-08-11 20:22:29 -04:00
|
|
|
Owner: #{meth.owner ? meth.owner : "Unknown"}
|
|
|
|
Visibility: #{meth.visibility}
|
|
|
|
Type: #{meth.is_a?(::Method) ? "Bound" : "Unbound"}
|
|
|
|
Arity: #{meth.arity}
|
|
|
|
Method Signature: #{meth.signature}
|
|
|
|
Source Location: #{meth.source_location ? meth.source_location.join(":") : "Not found."}
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|