I\'m working on this alerting service in Rails. And really, all I need to do is, when a user signs up, send a confirmation email to the user. And upon confirmation from the
You could also make use of scopes for selecting users.
class User < ActiveRecord::Base
scope :certified, where(:certified => true)
end
And then in your code:
@user = User.certified.find_by_username(foo)
Assuming given the title that you definitely want to avoid Devise, Authlogic and friends, here's what I think you need to do:
Devise is an other excellent authentication gem that comes with email activation build in, perhaps you could give it a go.