如何使用Pry导航列出模块中的所有方法?

时间:2012-11-20 19:44:19

标签: ruby pry

Pry使用'cd'更改内容并使用'ls'显示其中的所有方法和变量的功能。

我的问题是如何在模块中使用它,比如显示Math模块中的所有方法

1 个答案:

答案 0 :(得分:2)

[4] pry(main)> ls Math -m
Math.methods: acos  acosh  asin  asinh  atan  atan2  atanh  cbrt  cos  cosh  erf  erfc  exp  frexp  gamma  hypot  ldexp  lgamma  log  log10  log2  sin  sinh  sqrt  tan  tanh
[5] pry(main)>