0

发行说明说默认安装了 ruby​​-debug。我正在使用 rvm。在我的 rails 应用程序中,我想出了一些script/server --debugger足够简单的东西,但它抱怨没有安装 ruby​​-debug gem,建议使用gem install ruby-debug,这当然不起作用(构建本机扩展)并且与文档相反。

只是想知道是否有人在使用 jruby 1.5 中的内置 ruby​​-debug 时有运气,以及为了在调试模式下运行 jruby 需要做什么。

这是我的输出:

brad-robertsons-macbook-pro:trunk bradrobertson$ which ruby
/Users/bradrobertson/.rvm/rubies/jruby-1.5.1/bin/ruby
brad-robertsons-macbook-pro:trunk bradrobertson$ jruby --debug script/server --debugger
=> Booting WEBrick
=> Rails 2.3.5 application starting on http://0.0.0.0:3000
You need to install ruby-debug to run the server in debugging mode. With gems, use 'gem install ruby-debug'
4

2 回答 2

2

嗯,它似乎对我有用。

~/projects/jruby/yogi/test ➔ jruby --debug script/server --debugger
=> Booting Mongrel
=> Rails 2.3.5 application starting on http://0.0.0.0:3000
=> Debugger enabled
=> Call with -d to detach
=> Ctrl-C to shutdown server
app/views/test/_test2.html.erb:3
<% 6.times do -%>
(rdb:3) next
app/views/test/_test2.html.erb:3
<% 6.times do -%>
(rdb:3) step
app/views/test/_test2.html.erb:4
<%= render :partial => "test3.html.erb" %>
(rdb:3) step
/Users/headius/projects/jruby/lib/ruby/gems/1.8/gems/activesupport-2.3.5/lib/active_support/core_ext/string/output_safety.rb:34
result = concat_without_safety(other_or_fixnum)

鉴于以下 _test_2.html 部分:

<div >
    <% debugger -%>
    <% 6.times do -%>
        <%= render :partial => "test3.html.erb" %>
    <% end -%>
</div>

你是如何得到 JRuby 的?

于 2010-06-10T05:45:41.130 回答
1

我对 RVM + JRuby 组合也有同样的问题。有关解决方法,请参阅我的帖子:http ://wordsanddeeds.posterous.com/debugging-with-rvm-jruby

于 2010-10-18T14:29:05.980 回答