8

我经常使用 pry-byebug gem 在我的代码中放置断点

binding.pry 

但是,在调试过程中(比如在进行了轻微更改之后),我经常希望在没有任何断点的情况下运行整个代码/规范。

有没有办法做到这一点?我正在寻找类似的东西

bundle exec rspec '--ignore-pry' spec/controller/my_controller.rb
4

1 回答 1

2

TL;DR 使用 DISABLE_PRY=1 环境变量

我有完全相同的问题,我发现了这个https://github.com/pry/pry/blob/master/spec/pry_spec.rb#L29

基本上你只是跑

DISABLE_PRY=1 bundle exec rspec spec/controller/my_controller.rb

你很好。在这批撬模块上进行了测试

$ cat Gemfile.lock | grep pry    
      pry (>= 0.9.12)
    pry (0.10.4)
    pry-byebug (3.4.1)
      pry (~> 0.10)
    pry-doc (0.10.0)
      pry (~> 0.9)
    pry-rails (0.3.4)
      pry (>= 0.9.10)
    pry-rescue (1.4.4)
      pry
    pry-stack_explorer (0.4.9.2)
      pry (>= 0.9.11)
于 2017-08-10T07:06:28.477 回答