views:

230

answers:

2

Hi all, hope you all doing well.

my question is on ruby technology, we are developing an web based application using rails framework and ruby. I need to know how the routing works (routes.rb), can some one send me a link of sample CRUD application which I can use in my project.

I need also User authentication and authorization framework using ruby which is readily available.

very urgent, many many thanks :)

+2  A: 

Basically, you are asking how Ruby on Rails works and how to getting started. I encourage you to start from the official documentation, including the Wiki site and Guides.

You can find information about Rails routing here. More answers about Rails Authentication and Authorization here and here.

Simone Carletti
A: 

For a quick way of creating a Rails CRUD application with user authentication and authorization, please see the Bullet on Rails project. Bullet on Rails is a project I created a while ago to help me quick start creating CRUD apps with authorization included and AJAX crud.

Since you seem to be new to Rails, I also recommend that you read the documentation suggested by weppos.

Juan Tarquino