0
votes
1answer
23 views

Call a method and initiate debugging from the rails console without editing the source code?

Sometimes when I'm working in the rails console, I find I want to step through a particular method (from my rails app) in the debugger. In the past I have done this by temporarily adding a debugger ...
0
votes
2answers
25 views

Rubygems don't load in IRB or Rails Console

Using RVM on OSX, I'm trying to use ruby gems. However, a require 'rubygems' returns false in IRB and Rails console. Going through similar questions here, I figured it might have to do with the Gem ...
0
votes
1answer
33 views

Easy way to suppress SQL output in Rails console?

I frequently need to go on the Rails console with rails c. Then I run some statement which loops through records of a model. I need to output information, but all the SQL code gets littered throughout ...
1
vote
0answers
18 views

Can the Rails Console be reloaded when release symlink changes?

I am running rails on a Capistrano-based deployment setup. I prefer to leave rails console sessions open in tmux, and have them persistently available. Capistrano puts the application in a director ...
0
votes
0answers
47 views

IRB subsession exit hangs if IRB::Abort/CTRL+C received previously

I created a script to log IRB input & output, per assigned task (in this case, a support ticket to development). This script retains a few select instance variables, but wipes the rest. I wanted ...
-7
votes
2answers
38 views

Did I break my version of ruby?

I was doing some math stuff in my console with lat/lon, trying to get the logic right for a distance formula. I got it, but now every time I try and divide an integer by a larger integer, it returns ...
1
vote
1answer
34 views

Reload rails console with hotkey

Is it possible to reload rails console with hotkey? Something like binding reload! to CMD+r (like reloading page in browser).
1
vote
2answers
93 views

How to create a custom method for the rails console?

When I'm using the Rails console in Ubuntu for a long session I define the clear method: def clear; system 'clear' end So when my console is getting dirty the only thing I have to do is type clear ...
2
votes
2answers
155 views

Rails console limits text output. How do I get to see it all?

It seems like the Rails console limits its character output to about 880 characters. How do I remove this limitation? Printing large objects, or text fields from the database, gives output like this: ...
1
vote
2answers
2k views

How to attach the Rubymine IDE debugger to a shell process?

I want to use Rubymine's IDE debugger to debug a ruby process running in the command shell, as it is spawned, e.g. by "rails console". I've gotten great mileage out of the debugger when running the ...
1
vote
2answers
75 views

What exactly does the “Rails development environment” entail?

I'm running Rails 3.1.1 and Ruby 1.8.7. When I type irb in the OS X Terminal the command prompt ree-1.8.7-2011.03 :001 > is displayed immediately. When I type rails console in the terminal the same ...
1
vote
2answers
1k views

Why do ActiveRecord queries from console print sql statements?

I'm using pry, and ActiveRecord queries from the console always print out their corresponding SQL statements. I don't want this behavior. Googling around I only see that this must be explicitly ...
1
vote
1answer
231 views

Generic way to paginate output of IRB or Rails console

The output of an IRB command is often too large for one "screen" (even if I scroll up - I am using Windows - I cannot get to the start of the output). Is there a generic way to scroll/paginate ...
4
votes
4answers
1k views

~/.irbrc not executed when starting irb or script/console

Here's what I've tried: 1. gem install awesome_print 2. echo "require 'ap'" >> ~/.irbrc 3. chmod u+x ~/.irbrc 4. script/console 5. ap { :test => 'value' } Result: NameError: undefined ...