Ruby on Rails: debugging rake tasks

2019-01-22 10:53发布

When I write debugger it does not start:

NoMethodError: undefined method `run_init_script' for Debugger:Module
from /usr/local/lib/ruby/gems/1.8/gems/ruby-debug-base-0.10.3/lib/ruby-debug-base.rb:239:in `debugger'
from (irb):4

If I run rake my:task --debugger,it returns me to console immediately. How is it possible to debug rake tasks?

6条回答
我想做一个坏孩纸
2楼-- · 2019-01-22 11:32

I found the solution.

$ gem install ruby-debug
$ ruby-debug rake my:task

or on some systems

$ rdebug rake my:task
查看更多
ら.Afraid
3楼-- · 2019-01-22 11:33
我命由我不由天
4楼-- · 2019-01-22 11:34

Visual Studio Code has pretty good debugger, built-in. If anybody finds this searching for a way to get it to work with rake, here's a working configuration:

{
    "name": "Debug a rake task",
    "type": "Ruby",
    "request": "launch",
    "useBundler": true,
    "cwd": "${workspaceRoot}",
    "program": "/usr/local/bin/rake",
    "args": ["all"]
}

This would run the rake task all. You may have to change the path to rake, I didn't find way to run the one in PATH.

查看更多
不美不萌又怎样
5楼-- · 2019-01-22 11:36

I highly recommend pry for this

bundle install pry
require 'pry'
rake ...

In your rake task file:

binding.pry 
查看更多
淡お忘
6楼-- · 2019-01-22 11:43

This approach did not work for me. I just added this in my code:

require 'ruby-debug'
# ... code ...
debugger
查看更多
仙女界的扛把子
7楼-- · 2019-01-22 11:49

Andrey Kouznetsov's answer didn't work for me using Ruby 1.9.3. The ruby-debug gem doesn't seem to support Ruby 1.9. I had to use the debugger gem: https://github.com/cldwalker/debugger.

  1. Add gem 'debugger' to my Gemfile's development group.
  2. Run bundle.
  3. Add require 'debugger' to the top of my rake task.
  4. Add a call to debugger where I wanted a breakpoint in my rake task.
  5. Run the rake task normally from the command line, e.g.: rake my:task.
查看更多
登录 后发表回答