Ruby实现命令行中查看函数源码的方法
程序员文章站
2022-08-28 15:27:36
如果要查看 activerecord 的 update_attribute 函数的源代码,一个比较常见的方法是直接在 rails 源码中搜索 def update_attr...
如果要查看 activerecord 的 update_attribute 函数的源代码,一个比较常见的方法是直接在 rails 源码中搜索 def update_attribute。博客 the pragmatic studio 介绍了一个更方便的技巧,在 ruby 命令行中就能启动编辑器直接访问。
通过 object#method 方法可以获得 update_attribute 方法的对象,而 method#source_location 则返回这个方法定义的文件和位置。有了这个信息后,就能启动编辑器查看源代码了:
复制代码 代码如下:
> method = user.first.method(:update_attribute)
user load (0.5ms) select `users`.* from `users` limit 1
=> #<method: user(activerecord::persistence)#update_attribute>
> location = method.source_location
=> ["/users/wyx/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.2.11/lib/active_record/persistence.rb",
177]
> `subl #{location[0]}:#{location[1]}`
=> ""
把这段代码封装成函数,加到 .pryrc 或者 .irbrc 中:
复制代码 代码如下:
def source_for(object, method)
location = object.method(method).source_location
`subl #{location[0]}:#{location[1]}` if location && location[0] != '(eval)'
location
end
如果要查看 user 的实例方法 update_attribute,可以直接在 pry / irb 中调用
复制代码 代码如下:
source_for(user.first, :update_attribute)
如果要使用其他编辑器,得把 subl #{location[0]}:#{location[1]} 换成这个编辑器对应的命令行:
复制代码 代码如下:
# textmate
mate #{location[0]} -l #{location[1]}
# macvim
mvim #{location[0]} +#{location[1]}
# emacs
emacs {location[0]} +#{location[1]}