Upgrade to Pro — share decks privately, control downloads, hide ads and more …

ruby新手读源码.pdf

覃明圆
January 20, 2015
180

 ruby新手读源码.pdf

覃明圆

January 20, 2015
Tweet

Transcript

  1. 1. 继承信息、include 的模块 • klass.superclass() • klass.included_modules() • klass.ancestors() 2.

    类变量 • klass.class_variables() 3. 定义的实例⽅方法 • klass.instance_methods()
  2. pry (1) • ls 列出当前的变量和⽅方法 • cd 进⼊入特定的程序上下⽂文环境 • whereami

    当前context所在位置 • watch 跟踪某个变量,发⽣生变化时打印出来
  3. pry-rescue • rescue 命令 • cd-cause:Move to the exception that

    caused this exception to happen • try-again:Re-try the code that caused this exception