rails 调试

启动Mongrel 或WEBrick时加上参数
--debugger

安装gem
sudo gem install ruby-debug

代码:
  class WeblogController < ActionController::Base
    def index
      @posts = Post.find(:all)
      debugger
    end
  end

你可能感兴趣的:(Rails)