views:

36

answers:

1

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!

+1  A: 

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.

jwarchol
Haha glad to know I didnt mess something up. Thanks.
tehaaron
To thank jwarchol, accept his answer :)
Ariejan