I have a project I'm working on which I just ported from Merb to
Rails3, I used to use the Merb salted password plugin and needed to
replace it with something. The project uses Sequel as the ORM.

If you are looking for a really simple authentication take a look at

https://github.com/wolfmanjm/wolfmanblog_rails

Specifically controllers/users_controller.rb, public/javascript/
auth.js, views/users/login.html.haml and models/user.rb

This is a very simple authentication scheme using javascript/jquery to
do a challenge/response login.

as it doesn't send the password or hashed password over the wire it is
safe to use on non-encrypted connections.

I'll be writing a blog article on it as soon as I deploy this new
version to my server :)

On Nov 29, 12:38 pm, cult hero <[email protected]> wrote:
> I'm working on a new project where I am doing my best not to reinvent
> the wheel where possible. One of the real headaches of Rails 3 right
> now is that while, in theory, the framework is ORM agnostic a huge
> number of readymade gems and modules are not.
>
> Does anyone here know of a decent authentication module that works
> with Sequel models? (I'm in the process of messing with Authlogic
> right now and might be able to make it Sequel compatible but that
> remains to be seen.)

-- 
You received this message because you are subscribed to the Google Groups 
"sequel-talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sequel-talk?hl=en.

Reply via email to