10

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 local variable or method `ap' for #
Patrick Klingemann
  • 8,884
  • 4
  • 44
  • 51

5 Answers5

19

To check what in .irbrc is failing, just execute .irbrc as a normal Ruby script (ruby ~/.irbrc), and Ruby will tell you which line fails. It might complain that IRB module is missing, just require 'irb' in the script (you only need this when testing it, not when actually running IRB).

Stian Håklev
  • 1,240
  • 2
  • 14
  • 26
  • 3
    Yupp, this definitely helped me debug my situation and lead to a fix. (I'm just puzzled that IRB didn't complain when loading irb when a gem was missing.) – Sam Figueroa Sep 02 '15 at 07:24
9

Your Rails Console May Be Using Pry

Based on the suggestions that ~/.irbrc must be invalid, I reduced mine to a single puts "hi", and although it output when I ran irb, it did not when I ran rails console.

I finally noticed that the prompt was pry(main). It turned out that this Rails project is set up with the pry-rails gem, so that's what the console uses. Customizing .pryrc does the trick.

Nathan Long
  • 122,748
  • 97
  • 336
  • 451
8

Adding "require 'rubygems'" to my ~/.irbrc file seemed to do the trick.

jdeseno
  • 7,753
  • 1
  • 36
  • 34
7

In my case it was "If your ~/.irbrc is invalid, it will fail silently." - from Google search - found and fixed errors in ~/.irbrc, all working fine

rombob
  • 195
  • 1
  • 7
  • 2
    Had the same problem. In particular, if there are any `require` statements at the top, and they don't work because of the bundler environment, the whole .irbrc will be ignored silently. Solution: `begin / rescue Exception / end` blocks around everything that could fail. – Jo Liss Mar 10 '11 at 17:47
1

You need to add require 'rubygems' as jdeseno wrote.

If you are on Rails3 and use Bundler, you also need to specify the 'awesome_print' gem in the Gemfile too (in the :development group) for it to work.

Paweł Gościcki
  • 9,066
  • 5
  • 70
  • 81