User Authentication and permissions

This may be a bit too open ended but what is the best way to add user
authentication and security services to a ruby on rails app. Is there
a standard API or Framework to achieve this?

On 7/26/07, Jacko [email protected] wrote:

This may be a bit too open ended but what is the best way to add user
authentication and security services to a ruby on rails app. Is there
a standard API or Framework to achieve this?

http://groups.google.com/group/rubyonrails-talk
http://www.google.com/search?&q=rails+authentication

On Jul 26, 2007, at 3:44 PM, Jacko wrote:

This may be a bit too open ended but what is the best way to add user
authentication and security services to a ruby on rails app. Is there
a standard API or Framework to achieve this?

There are a few ways, one is well covered in the AWDWR book.
The other is similar but cleaner for you. A plugin called:
acts_as_authenticated

Essentially things are separated into different controllers.
Controllers that require authentication or login of some kind are not
accessible without that. That means the URL/URI’s generated by their
methods/actions cannot be accessed without authentication.
Everything in the controllers that don’t require authentication are
accessible. (basically, though this is all a very simplified
description, but Rails does make it all pretty easy)

But check out the Ruby T. list at Google groups.
That’s the best place to ask Rails-specific questions.
This list may get you some answers, as Rails does use Ruby and
libraries written in Ruby. Depends on the topic

On 7/29/07, John J. [email protected] wrote:

But check out the Ruby T. list at Google groups.
That’s the best place to ask Rails-specific questions.
This list may get you some answers, as Rails does use Ruby and
libraries written in Ruby. Depends on the topic

That is the mailing list you are responding to right now. If you’re
on comp.lang.ruby or ruby-forum, the majority of your traffic is
coming from RubyTalk, FWIW.

And please don’t ask Rails questions here, send them along to the
Ruby on Rails list. The folks here have made it clear that we’d prefer
to see the traffic go to where its most likely to get the right
answers.

On Jul 29, 2007, at 10:28 AM, Gregory B. wrote:

And please don’t ask Rails questions here, send them along to the
Ruby on Rails list. The folks here have made it clear that we’d prefer
to see the traffic go to where its most likely to get the right
answers.

Oops, that was an early morning coffee moment, I meant Rails Talk at
Google groups!