1

出于某种原因,当我使用 设置断点时binding.pry,程序最终会在一个完全不同的(看起来像外星人!)的地方停止。我做错了吗?

Gemfile(缩写)

gem "rails", "~> 4.1"
gem "pry"
gem "pry-rails"
gem "pry-doc"
gem "pry-stack_explorer"
gem "pry-byebug"

设想

断点:

class SomeController < Application controller
  before_filter :filter
  ...
  def filter
    assignment = SkillAssignment.where(day: selected_date).first

    if assignment
      @day_skill = assignment.skill
      @day_description = @day_skill.description
    end

    binding.pry
  end
end

我降落的地方(使用show-source):

[1] pry(ActiveSupport::Callbacks::Filters::Before)> show-source

From: /home/yan-foto/workspaces/my-app/vendor/bundle/ruby/2.2.0/gems/activesupport-4.2.0/lib/active_support/callbacks.rb @ line 156:
Owner: #<Class:ActiveSupport::Callbacks::Filters::Before>
Visibility: private
Number of lines: 16

def self.halting(next_callback, user_callback, halted_lambda, filter)
  lambda { |env|
    target = env.target
    value  = env.value
    halted = env.halted

    unless halted
      result = user_callback.call target, value
      env.halted = halted_lambda.call(target, result)
      if env.halted
        target.send :halted_callback_hook, filter
      end
    end
    next_callback.call env
  }
end
4

1 回答 1

2

感谢@Manuel 和@Anthony,我现在知道这个问题是由pry-byebug. 不幸的是,这似乎并没有像GitHub 中的开发人员提到的那样尽快得到解决:

目前的情况是我几乎从不使用 pry-byebug,所以我觉得维护我不使用的软件的动力不足。:(

如果你想binding.pry在最后一行,一个简单的解决方法是写这样的东西:

def myMethod
  # magic
  binding.pry
  1 + 1
end
于 2015-01-26T13:37:51.913 回答