2

我最近发现lsin pry 可以采取这样的论点:ls -l.

我最初的问题是这-l部分实际上是什么——它显然不是字符串或符号,也没有l定义局部变量或方法,那么幕后是否还有其他事情发生?

作为我的问题的扩展,ls只是 pry 定义的“普通”Ruby 方法,还是它的行为略有不同?

我还注意到,如果传递字符串 ( ls 'l') 或符号 ( ls :l),则会得到不同的输出。是否有可能选项的完整参考?

4

1 回答 1

5

-l通过该方法将整行作为字符串评估为传递作品pry_eval。从那里,它将开始与现有命令匹配,并将其余部分提取为要传递的选项。来自 Pry 文档:

几乎每个 Pry 会话中的功能都是作为命令实现的。命令不是方法,必须从行首开始,中间不能有空格。命令支持灵活的语法并允许使用与 shell 命令相同的“选项”

您可以通过运行查看完整的选项列表ls -h。这将返回:

-m, --methods               Show public methods defined on the Object (default)
-M, --instance-methods      Show methods defined in a Module or Class
-p, --ppp                   Show public, protected (in yellow) and private (in green) methods
-q, --quiet                 Show only methods defined on object.singleton_class and object.class
-v, --verbose               Show methods and constants on all super-classes (ignores Pry.config.ls.ceiling)
-g, --globals               Show global variables, including those builtin to Ruby (in cyan)
-l, --locals                Show locals, including those provided by Pry (in red)
-c, --constants             Show constants, highlighting classes (in blue), and exceptions (in purple)
-i, --ivars                 Show instance variables (in blue) and class variables (in bright blue)
-G, --grep                  Filter output by regular expression
-h, --help                  Show this message.
于 2019-11-15T14:49:44.083 回答