REST IN RUBY ON RAILS

Hello Friends,   Can anybody explain me, What is Rest mean in RUBY ON RAILS...

It means the same thing in all web frameworks.

http://en.wikipedia.org/wiki/Representational_state_transfer

Dheeraj Kumar wrote in post #1115456:

It means the same thing in all web frameworks.

REST - Wikipedia

-- Dheeraj Kumar

ok thanks, can you please tell me, how it is implemented in ruby on rails. actions index,edit,new,update etc comes as part of rest???, am confused.

They are all controller actions. Methods, if you prefer.

ok could please help me to know how it is implemented in rails, like telling a example.

Create a new rails application, generate a new scaffold, and check it out for yourself.

yes i created a application.. so where it comes?

generate a scaffold.

yes i did..

Can you go through this guide first ? http://guides.rubyonrails.org/routing.html Do get back if you still feel lost.

yes i did..

Work right through a good tutorial on rails such as railstutorial.org, which is free to use online, then you should understand the basics of Rails.

Colin