ceth
ceth

Reputation: 45295

Confused by changed API

I worked with rails around the year ago. Now I get the new version of Rails and I am a bit confused.

Where is my script/server and script/generate. I finded this guide and as I see I need use 'rails' command now.

Is it version 3 changes? Is there a document which describe all such changes. Is there a good book corresponding to new version Rails?

Upvotes: 0

Views: 57

Answers (3)

ssri
ssri

Reputation: 1300

http://rubyonrails.org/screencasts/rails3 gives you screencasts of major changes in rails3

Upvotes: 1

Patrick
Patrick

Reputation: 8063

It is described in the Release Notes of 3.0 that those scripts have been replaced by rails c (console) and rails s (server). It's pretty straight forward and very comfortable in my opinion.

Upvotes: 3

Steve Hill
Steve Hill

Reputation: 2321

There's plenty of information about the changes made for Rails 3, available from the Ruby on Rails website at http://www.rubyonrails.org. In particular, check out the screencasts section. Also, check http://guides.rubyonrails.org as that is full of detail about the changed API.

Upvotes: 0

Related Questions