Questions tagged «ruby-debug»

6
在OS X v10.7(Lion)上安装autoreconf?
我正在尝试使用可让我使用ruby-debug的补丁重新安装Ruby 1.9.3。 遵循说明并运行时 rvm reinstall 1.9.3 --patch debug --force-autoconf 应用补丁后,它会一直运行: rvm需要autoreconf来安装所选的ruby解释器,但是在PATH中找不到autoreconf。 不幸的是,四处寻找如何在OS X v10.7(Lion)上安装autoreconf(或有关它的很多信息)似乎是死路一条。

6
在RSpec中运行Ruby调试?
我试图让Ruby调试器在我的一种规格中运行: describe User do it "should be valid" do debugger User.new.should be_valid end end 当我运行rspec时,我得到: debugger statement ignored, use -d or --debug option to enable debugging 我尝试了以下方法: rake spec --debug rake spec --debug --trace rake spec:models --debug bundle exec rspec --debug bundle exec rspec --debug spec/models/ bundle exec rspec --d …

9
红宝石调试与Ruby 1.9.3?
我刚刚更新到Ruby 1.9.3p0和Rails 3.1.1。现在,当我尝试启动服务器时,它抱怨我应该安装ruby-debug,即使它已经安装了。 % rails server --environment=development --debug => Booting WEBrick => Rails 3.1.0 application starting in development on http://0.0.0.0:3000 => Call with -d to detach => Ctrl-C to shutdown server You need to install ruby-debug to run the server in debugging mode. With gems, use 'gem install ruby-debug' Exiting …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.