The purpose of a debugger ruby-debug is to allow you to see what is going on “inside” a Ruby program while it executes.

learn more… | top users | synonyms

0
votes
0answers
29 views

Rails with ruby-debug or vagrant box with rails and ruby-debug enabled

Can someone help me with an article to install a rails with a ruby-debug intalled. I tried several times with several versions of ruby without success. If someone help with a vagrant box or show me an ...
2
votes
5answers
150 views

Start ruby debugger if rspec test fails

Often, when a test fails, I spend quite sometime trying to figure out the what caused it to fail. It'd be useful if RSpec could kick off a Ruby debugger when the test fails, so that I can inspect the ...
0
votes
0answers
14 views

rails 2.3.8 turning off debug mode

I found the way to turn of debug mode on the rails version >3.0 by config.assets.debug = true in development.rb from here. But, I was not able to find the syntax for rails 2.3.8. Can anyone help ...
1
vote
1answer
53 views

How to examine ruby processes for performance problems?

I have an issue with a rails worker that is consuming extreme amounts of processor time. Oddly I have not been able to trace it out so far. I've tried to use New Relic, however I can't seem to trace ...
0
votes
1answer
50 views

Why can't I set a breakpoint in ruby-debug?

When I try to set a breakpoint from the command-line ruby debugger "ruby-debug," I get the following error: (rdb:1) break 11 INTERNAL ERROR!!! undefined method `entries' for ...
0
votes
3answers
28 views

Having to restart thin server (with SSL) each time to trigger Ruby Debugger normal?

I installed the debugger gem in a project i'm working on. They are using thin server with ssl. When I put a debugger in the code, it doesn't trigger until I restart the server. And then if I remove a ...
0
votes
1answer
44 views

ruby-debug how to go inside a function

what is the command to go inside a function using ruby-debug? Example class Hello def meth1 debugger meth2 end def meth2 puts "hello" end end I want to go inside the meth2 and ...
1
vote
2answers
42 views

How can I use ruby-debugger inside of a resque job?

I'm looking for a command to start a worker process so that inside of the job's perform method I can call debugger and have control thrown to the command prompt.
0
votes
1answer
226 views

Cannot start the debugger for the ruby program with Aptana Studio 3 in Windows

As the title of this question, I cannot start debugging my rb file in Aptana Studio 3. This is the output of the "Console" view: ...
1
vote
0answers
118 views

Can't debug Watir scripts running under watir-classic (3.4.0)

I am developing Ruby scripts under Watir 4.0.2 so that I can test Internet Explorer under Watir-classic, and other browsers (e.g., FireFox) under Webdriver. If I set the environment variable ...
0
votes
3answers
89 views

Can't install ruby-debug?

Has anyone else encountered this? gem install ruby-debug Building native extensions. This could take a while... ERROR: Error installing ruby-debug: ERROR: Failed to build gem native extension. ...
0
votes
1answer
49 views

Rails 3.2 debugger up key and down key is not working in Ubuntu 12

I have just installed rails in ubuntu 12 and I installed all its dependencies and gems required all project is running flowently . Only one thing I am really missing this time is ruby debugger is not ...
1
vote
1answer
106 views

Using capybara-firebug “stop and let me debug” in ruby 1.9.3

I have just upgrade to ruby on rails 3.0.9 from using rails 2.X. I have been writing feature tests in cucumber and used the capybara-firebug gem and specifically the included step stop and let me ...
-1
votes
2answers
60 views

Program for watching log files with ruby ​​on rails

Do you know a good program for mac OS. For clear and easy viewing logs in your ruby on rails application. I know I can be in the terminal tail-f log / development.log or less + F-R log / ...
3
votes
3answers
371 views

Debugging rake tasks

I added debugger and require 'ruby-debug' in my task to debug it. When I run my task from the console, it does hit the debugger, but doesn't let me inspect any variables. For example, if there's a ...
0
votes
1answer
85 views

Getting “[INFO] Unable to bind key for unsupported operation: backward-delete-word” when using ruby-debug with jruby 1.7.0

I get the following output after upgrading to jruby 1.7.0 and using ruby-debug: [INFO] Unable to bind key for unsupported operation: backward-delete-word [INFO] Unable to bind key for unsupported ...
1
vote
1answer
122 views

RubyMine 4.5: How to drop into a context-aware Rails Console during debugging?

How do you drop into a rails console session during, say, a breakpoint pause while debugging in RubyMine?
0
votes
0answers
277 views

Setting up Ruby Debug IDE in IntelliJ within a Bundler environment

I am trying to set up Ruby debugging from within IntelliJ. I am running JRuby on Mountain Lion and have my gems managed by Bundler. When I run the debugger from within IntelliJ it complains "the gem ...
1
vote
1answer
144 views

Rails view activerecord sql statements on debug console

I am using debugger gem in my Rails 3.2 application. How do I view the resulting SQL statement of active record method calls on the debug console? For eg: If I run Product.all on the debug console ...
1
vote
1answer
82 views

In ruby debug, only step through application/project files and skip framework files?

I'm using pry-debugger with debugger. When stepping through the execution stack, I would like to skip over framework and library files and only view code in my project (a rails app). Is there a way ...
0
votes
2answers
280 views

rails debugger error

Trying to get rails debugger work. I did following: gem install debugger Added in Gemfile gem "debugger", "~> 1.2.0" bundle install - no error Now I put debugger in one of my controllers def ...
2
votes
1answer
203 views

I can't install ruby-debug-base19 -v '0.11.25 on Windows 7

I'm trying to install Rails on Windows 7. When I install I get this error: make generating ruby_debug-i386-mingw32.def compiling breakpoint.c compiling ruby_debug.c ruby_debug.c:29:19: error: ...
2
votes
4answers
1k views

How do I install ruby-debug-base19x on Mountain Lion for IntelliJ?

I just upgraded to Mountain Lion and it appears that the IntelliJ 10 ruby-debugger no longer works. I am getting the error below, but can't really interpret how to fix this, any idea? ...
1
vote
1answer
89 views

Debugging error in Rails app running on Webrick server

I am running a Rails app on the webrick server and wanted to get error messages to be displayed to me in the console. I installed the debugger 'gem install debugger' and the installation went off ...
0
votes
1answer
154 views

Debugging controller methods by running functional tests

I am in a situation where I need to step through the controller method when I run a functional test. I use ruby-debug to debug through my application. My app is a rails 3.1 app which uses ruby-1.8.7 . ...
1
vote
0answers
510 views

Ruby debug ide with error ubuntu

I have too many errors when i want installing ruby-debug, and ruby-debug-ide. Error like this (bundle install): Using ruby_core_source (0.1.5) Using linecache19 (0.5.13) Using rails (3.2.5) Using ...
0
votes
2answers
91 views

Installing rails 3

I'll be very grateful id someone can explain me what does that mean: ror@ubuntu:$ sudo gem install linecache19 -v '0.5.12' ERROR: Error installing linecache19: linecache19 requires Ruby version ...
3
votes
1answer
492 views

Can't install ruby-debug, error: rb_method_entry_t.called_id

I'm trying to install ruby-debug. I'm using Mac OS 10.7.4, XCode version 2308, and Ruby version 1.9.3-p194. Following the instructions here: ...
0
votes
1answer
247 views

gem install ruby-debug19 fails [duplicate]

Possible Duplicate: Debugging in ruby 1.9 I am unable to install ruby-debug19. I tried to follow http://isitruby19.com/linecache19 BUT it didnot help me I also followed the steps in ...
0
votes
1answer
271 views

Install gem linecache19 : syntax error near unexpected token

I have tried to install a couple of ways but failed each time. Can you help? The outcome is always the same: ... creating Makefile make generating trace_nums-i386-mingw32.def /usr/bin/sh: -c: line ...
1
vote
0answers
64 views

Debugger is choppy with Guard/Spork/Testunit

I am using ruby 1.9.2p318, rails 3.1.3, and the following gems: gem 'debugger' gem 'spork', '~> 0.9.0.rc' gem 'spork-testunit' gem 'guard-spork' When I just use spork in the terminal and run a ...
3
votes
1answer
813 views

Aptana 3 and ruby debugging

How I can set the watch on variable's in ruby. I am using Aptana as IDE. I am coming for .NET and am used to seeing the variable values just by hovering over the variable. In aptana 3 i cant find ...
0
votes
1answer
46 views

Inspecting an implicit Exception when debugging inside a raise block

I'm using ruby-debug to dive into code that's throwing and silently eating exceptions. (The code is inside a gem, so I'm loathe to edit it directly without a really good reason.) I get to this line: ...
0
votes
0answers
102 views

Segmentation Fault Error wrt RedCloth and Ruby Debug gem

I tried to run a very basic command to view my Routes wrt all controller actions, using rake routes . I get the below error ...
1
vote
1answer
106 views

How to evaluate a multi-line block in ruby-debug console

I would like to evaluate def foo puts "you done got fooed" end in the ruby-debug console. It works fine fine with irb. But in ruby-debug, I can't get the reader to continue reading input after ...
1
vote
0answers
484 views

gem install ruby-debug is not working on windows 7

I am install ruby debugger on windows 7 and getting the following error. Before this question I looked at the following post and they are not working for me or I am obiviously misunderstanding ...
4
votes
1answer
2k views

How can I get debug support in Aptana 3 with Ruby 1.9.3?

I am running with the following configuration: Windows XP Media Center Edition SP3 Aptana Studio 3, build: 3.0.9.201202141038 ruby 1.9.3p125 (2012-02-16) [i386-mingw32] (installed from ...
1
vote
1answer
84 views

RSpec - Values not being set to user attributes properly

I've got a test I'm trying to debug and I've noticed that the values are not being set to the user attributes properly. When I run p user.height_feet or p user.height_inches from the debug console, I ...
0
votes
1answer
126 views

Ruby string comparison against regex capture

I'm new to ruby and it could be some basic stuff, but it just drives me crazy. How is the following possible? (rdb:1) display $2 26: $2 = "Alien" (rdb:1) display $2 == "Alien" 27: ...
7
votes
1answer
2k views

Installing ruby-debug-base19 on Windows in Ruby 1.9.3

I need to install ruby-debug-base19 in order to active debug on Netbeans IDE, when I execute: $ gem install ruby-debug-base19 I got the following error. Extracted from log generate ...
0
votes
2answers
1k views

RVM, Ruby 1.9.3, rails 3.1.3: can't start rails server due to ruby-debug

When I try to start the rails server via rails s I get this error: /home/james/.rvm/gems/ruby-1.9.3-p0/gems/ruby-debug-base19-0.11.25/lib/ruby-debug-base.rb:1:in `require': ...
71
votes
3answers
22k views

Install autoreconf on OSX lion?

I'm attempting to re-install ruby 1.9.3 with a patch that will allow me to use ruby-debug. When following the instructions and running rvm reinstall 1.9.3 --patch debug --force-autoconf It runs ...
0
votes
0answers
136 views

Error Deploying To Heroku - rbx-require-relative

When I try to push my app for the first time to Heroku (cedar), I get this error: Installing rbx-require-relative (0.0.5) Unfortunately, a fatal error has occurred. Please report this error to the ...
1
vote
1answer
482 views

Debug Not Working After Upgrade To Ruby 1.9.3 And Rails 3.2.2

I have upgraded my app to use Ruby 1.9.3p0 and Rails 3.2.2. To get bundler working I changed this: gem 'ruby-debug' to this: gem 'ruby-debug19' Now rails server gives: Could not find ...
1
vote
1answer
58 views

Ruby-debug's “ps” command not working?

I'm diving into how to use the Ruby Debugger (ruby-debug), specifically in a Rails app. It seems that the ps command within rdb should evaluate an expression, sort it, and columnize the value. All of ...
3
votes
3answers
1k views

Cannot load ruby-debug in ruby 1.8.7 on a Mac OS X 10.7.3 Lion

Cannot load ruby-debug on a Mac OS X 10.7.3 Lion. Not sure why the path is incorrect. Ruby version is 1.8.7 which came standard with Lion. Installed Xcode Developer Information: Version: No ...
9
votes
5answers
3k views

Rails 3.1 and Ruby 1.9.3p125: ruby-debug19 still crashes with “Symbol not found: _ruby_threadptr_data_type” [duplicate]

Possible Duplicate: ruby-debug with Ruby 1.9.3? I had heard rumors that ruby 1.9.3p125 has a solution for the ruby-debug19 problem, so per instructions on the RVM site, I reinstalled 1.9.3: ...
1
vote
2answers
852 views

Error installing ruby-debug/ruby-debug-base with Ruby Enterprise v1.8.7

I got problems when trying to install gem ruby-debug-ide. Then, I try to install gem ruby-debug-base first. However, I got an error: Error installing ruby-debug-base: rb-threadframe requires Ruby ...
3
votes
2answers
658 views

Why my AptanaStudio3.0 can't debug Rails application?

I have Google this question for almost a whole day, but still not answer. My ruby version is 1.9.3 and Rails is 3.2.1, on a Mac 10.6 OS. now my gem list is: linecache19 (0.5.13) ruby-debug-base19 ...
1
vote
2answers
608 views

Is ruby-debug-ide available to be installed on windows with ruby1.9.3?

I was trying to install ruby-debug-ide on my windows ruby environment. A lot of errors show up. My environment are Ruby1.9.3, Windows 7 and DevKit. So is there any guide to install ruby-debug-ide ...

1 2 3