views:

20

answers:

2

I installed rails 3 beta in my OSX Leopard. After that, I've created a rails project to test it. From inside its folder, I just can't do script/generate, or even script/server.

It returns '-bash: script/server: No such file or directory'. How could I resolve this issue?

A: 

Rails 3 has done away with script/*. Use rails server, rails generate, etc. while in your app's directory.

Run rails --help to get the full list.

Brock Batsell
omg! I skipped completely the manuals, I didn't think it would have so many changes :P
Victor Rodrigues
A: 

http://railscasts.com/episodes/archive

chief