Sha256: 388a202c93f3a6f6caf007ee9f50b961e8c73d0df1f14bbdf701fbb937eeeb1d
Contents?: true
Size: 1.76 KB
Versions: 2
Compression:
Stored size: 1.76 KB
Contents
module Looksee class Help def inspect <<-EOS.gsub(/^ *\|/, '') |== Looksee Quick Reference | | object.ls(*specifiers) | Print the methods of \`object\'. | | Available specifiers: | | :public :private :overridden | :protected :undefined | Print methods with these visibilities. | | :nopublic :noprivate :nooverridden | :noprotected :noundefined | Do not print methods with these visibilities. | | "string" | Print methods containing this string. | | /regexp/ | Print methods matching this regexp. | | Styles: | | #{Looksee.styles[:module] % 'Module'} | #{Looksee.styles[:public] % 'public'} } | #{Looksee.styles[:protected] % 'protected'} } like a traffic light! | #{Looksee.styles[:private] % 'private'} } | #{Looksee.styles[:undefined] % 'undefined'} ] like a ghost! | #{Looksee.styles[:overridden] % 'overridden'} ] like a shadow! | | Customize with Looksee.styles: | | Looksee.styles = { | :module => '**%s**', | :private => '(%s)', | ... | } | | object.ls.edit(method) | | Jump to the source of the given method. Set your editor | with Looksee.editor or the LOOKSEE_EDITOR environment | variable. "%f" expands to the file name, "%l" to the line | number. Example: | | Looksee.editor = "emacs -nw +%f %l" EOS end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
looksee-2.0.0-universal-java-1.6 | lib/looksee/help.rb |
looksee-2.0.0 | lib/looksee/help.rb |