Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
2k views

Rails with ruby-debugger throw 'Symbol not found: _ruby_current_thread (LoadError)'

I have standard ruby-head and Rails 3.1rc4. I installed ruby-debug with following instructions from http://dirk.net/2010/04/17/ruby-debug-with-ruby-19x-and-rails-3-on-rvm/ But when i run rails s ...
7
votes
4answers
260 views

How to stop the Rails debugger for the current request

Say I have a loop in my code that calls the rails debugger a few times def show animals = ['dog', 'cat', 'owl', 'tiger'] for animal in animals debugger # do something else end ...
7
votes
3answers
2k views

ruby-debug wont install / build native extensions

I have searched high and low for a solution. I have both "linecache19" and "ruby_core_source" installed. Neither of these commands will work: gem install ruby-debug19 gem install ruby-debug19 -- ...
5
votes
5answers
522 views

ruby_threadptr_data_type error

I'm starting up a new rails app with the latest version of rails (3.1.3). Rails crashes when I try to start up the server. First I fixed this bug, and now I'm getting this one ...
5
votes
2answers
3k views

Running ruby debug in rspec?

I'm trying to get ruby debugger running in one of my specs: describe User do it "should be valid" do debugger User.new.should be_valid end end When I run rspec though, I get: * ...
5
votes
3answers
399 views

ruby-debug and cucumber

I have a failing scenario in cucumber, and I'd like to debug my rails controller using ruby-debug. But if I add 'debugger' to the point where I want to break, it doesn't stop. I tried adding require ...
4
votes
2answers
80 views

How can I dump the code (not objects/stack) of a running Ruby process?

I just wrote a scraper process. It's a single file program — loads ActiveRecord, creates a couple models, defines a couple scraping functions, and then runs in a loop. Sadly, I messed up a git ...
3
votes
5answers
2k views

ruby-debug with Ruby 1.9.3?

I just updated to Ruby 1.9.3p0 and Rails 3.1.1. Now when I try to launch the server, it complains that I should install ruby-debug, even though it's already installed. % rails server ...
3
votes
1answer
2k views

Ruby Debug “no such file to load --spec_helper”

Noob who may be missing something obvious ... I'm trying to debug an Rspec file. The Rspec file is stripped down at this point: require 'spec_helper' describe PagesController do ...
3
votes
1answer
269 views

How to debug a plugin / gem? (with useful notes to setup and use ruby-debug gem)

Is there a way like how we debug models / controllers with logger.debug? Or even a better method? Thank you! Edit 1 Using ruby-debug seems like a steep learning curve for me, could anyone point me ...
3
votes
1answer
121 views

Rails: Ruby debugger shows old code unless I stop the server and start it again

Using ruby-debug, when I issue a list command, it shows old code. So if I update the code surrounding (especially before) the debugger command in the model it still shows the old code. The only way ...
3
votes
2answers
789 views

undefined params and session hashes in before_filter

Does anybody know why, when using ruby-debug by calling debugger in a method called as a before_filter, the params and session hashes are not defined? class MyExampleController < ...
2
votes
1answer
113 views

Thin with SSL support and ruby-debug

Does anyone know of a way to run the ruby debugger and SSL at the same time with Thin? I've been using Thin successfully with Rails 3.0.10. I start it using rails server --debugger, and I can debug ...
2
votes
2answers
88 views

Why does “block_given?” return false in debugger? (Works correctly when not debugging)

On testing with ruby debugger block_given? gives false but still executes, can someone explain me how its executed?.It is anything related to context(Is debugger changing context)? if yes then how to ...
2
votes
1answer
390 views

Ruby Debugger in RubyMine

I am trying to run the debugger in Rubymine and I keep getting this error. /Users/skline/.rvm/rubies/ruby-1.9.2-p136/bin/ruby -e ...
2
votes
2answers
989 views

Ruby 1.9.1 and Aptana Studio 3 Cant get debug to work (Windows)

So for the last few weeks ive been reading posts on SO and other sites about Ruby IDE's, especially for support with Ruby 1.9. Aptana/RadRails plugin looks amazing as im very used to the eclipse ...
2
votes
3answers
1k views

Can install gem ruby-debug, but rails server can't find it

I found a pretty interesting problem installing ruby gems bluehat@Matapan:~/code/Amacron$ rails server --debugger => Booting WEBrick => Rails 3.0.3 application starting in development on ...
2
votes
3answers
271 views

How do I set a variable in the Ruby debugger (ruby-debug/rdebug)?

Let's suppose I have a very simple Ruby program: require 'rubygems' require 'ruby-debug' x = 1 debugger puts x When execution hits the 'debugger' command it properly halts and gives me the 'rdb' ...
2
votes
2answers
723 views

Passenger 3.0 and debugger

I have problems using passenger standalone with a debugger. If I try this: passenger start --debugger I get this error: Your version of ruby-debug is too old. Please upgrade to the latest version. ...
2
votes
1answer
1k views

Debugging Rails application with Textmate

How do you guys debug your Rails apps? I have seen a link to datanoise.com that is supposed to show how to use ruby-debug with Textmate using a bundle.. but it looks like the page is down. Does ...
2
votes
2answers
509 views

Is there any way to tell which gems and plugins are loaded at runtime for a Rails process?

Is there any command either in debugger or ruby-debug to get a list of all gems and/or plugins loaded in memory for a Rails process? I understand only the 'require' gems are loaded but I would like to ...
2
votes
6answers
3k views

Ruby-Debug Gem Install Problem on Windows

I'm having trouble installing the Ruby-Debug Gem on windows. What does this error mean? How can I fix this? Thanks C:\Users\Steve>gem install ruby-debug Building native extensions. This could take ...
1
vote
1answer
34 views

ruby-debug with Pow — breakpoints never hit

I'm trying to use ruby-debug with Pow. Rails 3 app. I have done everything here: https://gist.github.com/1098830 I've restarted the server and machine several times. I can get rdebug to connect: → ...
1
vote
1answer
48 views

Aptana 3 ruby debugger - Exception in DebugThread loop: undefined method `is_binary_data?'

I'm trying to debug simple ruby file in Aptana 3. class HelloWorld def initialize() end def greet() puts "hello world" end end h=HelloWorld.new h.greet breakpoint is set to h.greet ...
1
vote
3answers
203 views

Unable to install gem ruby-debug19 on win7 with installd ruby 1.9.2 and 1.9.3

I've tried many solutions but nothing seems to work! I use Ruby 1.9.3 and Rails 3.1.3 and I want to install the ruby-debug19 gem. This ist what I get from the PowerShell: PS C:\Users\**\**\**> gem ...
1
vote
0answers
31 views

nginx, rails and ruby-debug

I recently shifted my application from apache2 to nginx, and since then I face a peculiar problem with ruby-debug. When execution hits a debugger call, and ruby-debug is not running, it causes my ...
1
vote
1answer
38 views

Why does the Rails Debugger not default to Autoreloading?

This drove me nuts for the longest time and I thought my rails s was not reloading my code when in fact the debugger was not reloading it. Then I found from this post that auto-reloading is not ...
1
vote
1answer
33 views

How do I get ruby debugger to work in sinatra with shotgun?

Is there a way of running shotgun to allow for ruby debugger statements to run? the -d flag seems to be just for debugging output.
1
vote
3answers
570 views

Cannot use ruby-debug19 with 1.9.3-p0?

I run this: gem install ruby-debug19 And in my cucumber env.rb file, I have this: require 'ruby-debug' When I try to run, though, I get this exception: ...
1
vote
1answer
96 views

Error: installing ruby-debug-ide

The truth is that i am new to ruby on rails development. Not that i can not install the gem install ruby-debug-ide on aptana studio 3. gem install ruby-debug-ide Temporarily enhancing PATH to include ...
1
vote
1answer
322 views

How to get awesome_print to work in pry/ruby-debug in running app

I super love awesome_print and ruby-debug but I can't get them to work together. AwesomePrint returns HTML for formatting but I'd it seems like ruby-debug and pry don't like multi-line output so I ...
1
vote
0answers
149 views

Run ruby-debug on Heroku

Is there any way to do it? I often have issues that work locally but fail on Heroku for some reason related to the environment. It would be nice to be able to run the debugger there.
1
vote
1answer
217 views

Ruby-debug color?

For the people who use ruby-debug, do you do anything to get it to output in color? I'm setting up wirble right now to colorize my irb, but it's not going to colorize pretty print (which, I believe ...
1
vote
1answer
425 views

Running Ruby debugger on Eclipse PDT

I am trying to run a ruby debugger in Eclipse. I have not run a ruby debugger before, so I am not sure where to troubleshoot the problem. I am using Eclipse for PHP Developers, Version: Helios ...
1
vote
1answer
260 views

installing ruby-debug-ide on an offline machine

I'm trying to install ruby-debug-ide-0.4.15.gem on an Ubuntu 10.04 machine which is not connected to the Internet, and I get the following errors: ERROR: Error installing ruby-debug-ide-0.4.15.gem: ...
1
vote
2answers
128 views

frame, thread, and some other jargons in ruby-debug gem, what do they mean?

I am now trying to learn ruby-debug gem, but there are many jargons I am unable to catch up. Wondering if anyone could help with the explanations? I couldn't find them in ...
1
vote
1answer
421 views

What do i need to do to make ruby-debug19 run on ubuntu 10.04 with the ruby-full package from the repository?

i just installed the latest ubuntu version and the ruby-full package from the repository. Additionally i installed rubygems (1.3.7) and tried to do gem1.9.1 install ruby-debug1.9 as mentioned on ...
1
vote
3answers
741 views

RVM + Ruby 1.9.1 + ruby-debug = error?

I am trying to get a decent navigation between my methods in TextMate. I would love to have a list of them in a drawer, but I guess there is no such solution yet, right? Therefore I am trying to set ...
1
vote
3answers
2k views

Problem Installing Ruby-Debug on Windows

Any suggestions? C:\Users\Steve\barcoden>gem install ruby-debug Building native extensions. This could take a while... ERROR: Error installing ruby-debug: ERROR: Failed to build gem native ...
1
vote
1answer
306 views

Debugging/Breakpoint-ing the Rails Core with Ruby-Debug?

How do I debug the rails gems? I've just found the beauty of ruby-debug and am real excited, but I want to step through the routing code in action_controller, but the debugger isn't set up at this ...
1
vote
2answers
309 views

problems with jruby version of ruby-debug

This problem no longer exists. ruby-debug works fine in jruby these days Whenever I use 'n' to step over a line it steps into it instead. This happens to me on all the versions of jruby i've tried, ...
0
votes
1answer
13 views

ruby-debug not finding variables in rspec (in sinatra)

In my Gemfile I have (as per http://stackoverflow.com/a/8351945/111884) gem 'ruby-debug19', :require => 'ruby-debug' In my spec_helper.rb I have require 'ruby-debug' But when I put in ...
0
votes
1answer
32 views

ruby-debug-base19-0.11.26 installation errror

I'm trying to get ruby-debug working with ruby 1.9.3 and rails on OSX Lion. I've been following http://blog.wyeworks.com/2011/11/1/ruby-1-9-3-and-ruby-debug , but my problem is I can't get ...
0
votes
0answers
40 views

How do I debug Ruby scripts using Aptana Studio 3 and rbenv?

I'm using aptana studio 3 in my mac, osx lion, and I'm using rbenv to install rubies, but when I try to run the debugger in aptana I always got this error: /Users/nebiros/.rbenv/shims/ruby: line 4: ...
0
votes
1answer
17 views

ruby-debug aborts sporadically while debugging cucumber scenarios for a rails app (maybe when I raise an exception)

I'm debugging some cucumber scenarios for a rails app, and ruby-debug is not behaving the way I expect. I have a debugger statement at the top of one of my failing steps, and when I do some routine ...
0
votes
0answers
24 views

Unable to run ruby-debug on ruby1.9.3p0 under XP

How do I get ruby-debug to run under XP so that I can step through my Watir test scripts. I am unable to "require" ruby-debug on Windows XP. All of the solutions I have seen refer to a Unix-based ...
0
votes
1answer
52 views

Ruby debug output - switch on/off easily

When I write draft and experimental code in Erlang I usually use this: %%% Switch debugging output on/off: -define(DBG(Str, Args), ok). %-define(DBG(Str, Args), io:format(Str, Args)). Commenting ...
0
votes
0answers
36 views

Ruby debugger suddenly resume running when debugging cucumber tests

I'm trying to debug some cucumber tests in RubyMine (though the problem may be applicable to general ruby-debug.) I set a breakpoint and the debugger does stop. Then I start the usual debugging ...
0
votes
2answers
161 views

Ruby-debug not working

I can't get the server to start in debugging mode: even though I have all of the correct gems installed, the server refuses to start. $ gem install ruby-debug ERROR: Error installing ruby-debug: ...
0
votes
1answer
20 views

Is there a way to set up a permanent configuration for ruby-debug?

I see in the ruby-debug docs configuration settings for ruby-debug here: http://bashdb.sourceforge.net/ruby-debug.html#Debugger_002esettings But there isn't any mention of creating a configuration ...

1 2