Rails3 irb console vs rails console?

tehaaron picture tehaaron · Oct 30, 2010 · Viewed 9k times · Source

Using Rails3 and Ruby 1.9.2, I am new, just learning Ruby/Rails--

When I run irb I end up with irb(main):001:0> which is fine.

However when I run rails console I also end up with irb(main):001:0> and I thought, based on the book I'm reading and online tutorials that I should be seeing >>. Is the Rails Console I'm thinking of a gem that I need to install, something else, or am I just wrong?

Thanks!

Answer

jwarchol picture jwarchol · Oct 30, 2010

The exact prompt you'll see in irb can vary and I see the same one you do in Rails 3. It's nothing to worry about. In fact, I see the simple prompt in plain irb, and the full prompt in rails console :-)

They are both irb, it's just that rails console is set up such that the rails environment is all set and ready to work with, while regular irb has almost nothing loaded by default.