1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

Merge pull request #1063 from yui-knk/change-ls-option-description

Add 'public' to description of :M option in ls command.
This commit is contained in:
Kyrylo Silin 2013-12-21 02:54:26 -08:00
commit 75ec4fc5b7

View file

@ -29,7 +29,7 @@ class Pry
def options(opt)
opt.on :m, :methods, "Show public methods defined on the Object"
opt.on :M, "instance-methods", "Show methods defined in a Module or Class"
opt.on :M, "instance-methods", "Show public methods defined in a Module or Class"
opt.on :p, :ppp, "Show public, protected (in yellow) and private (in green) methods"
opt.on :q, :quiet, "Show only methods defined on object.singleton_class and object.class"
opt.on :v, :verbose, "Show methods and constants on all super-classes (ignores Pry.config.ls.ceiling)"