Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails3 irb console vs rails console?

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!

like image 307
tehaaron Avatar asked Oct 30 '10 00:10

tehaaron


1 Answers

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.

like image 101
jwarchol Avatar answered Oct 18 '22 17:10

jwarchol