我使用的Rails插件()是为Rails2.3编写的,其中包含一个名为rails/init.rb的文件,该文件在Rails3下会产生以下警告:
DEPRECATION WARNING: Use toplevel/rails/init.rb.<top (required)> at /home/logankoester/hack/active/myapp/config/environment.rb:
这是服务器日志: 127.0.0.1 at 2010-12-23 18:43:01 +0500 Processing by PeopleController#show as我的路由文件中有以下内容:resources :people
match ':controller(/:action(/:id(.:format
当查看lldb中的反向跟踪时,我坐在frame #0上,并试图“向下”移动堆栈,但是lldb说:
(lldb) down error: Already at the bottom of the stack即使是移动up或down的lldb命令,堆栈看起来也是向后移动的。例如,向下移动将从框架#1移动到帧#0,而框架#0是我中断的框架。知道他们为什么会向后走吗?还是我为什么向后倒?