Sha256: 016fc77bc26d4a78b0e6e1c5776a7f48be559fed9f2f3d469a3e7815a719089d
Contents?: true
Size: 800 Bytes
Versions: 34
Compression:
Stored size: 800 Bytes
Contents
module Inch module CLI module Command module Options class Console < BaseObject def descriptions [ '', 'Provides a PRY based REPL to inspect objects.', '', 'Example: ' + '$ inch console lib/**/*.rb Foo::Bar#initialize'.color(:cyan), '', 'Shortcut commands on the prompt are:', '', 'all'.ljust(5) + ' returns all code objects', 'f'.ljust(5) + ' finds an object by its path', 'ff'.ljust(5) + ' finds all objects given a partial path', 'o'.ljust(5) + ' returns the code object for OBJECT_NAME (if present)' ] end end end end end end
Version data entries
34 entries across 34 versions & 1 rubygems