A convenince method. The same as:
session = UserSession.new(*args) session.save
Instead you can do:
UserSession.create(*args)
# File lib/authlogic/session/existence.rb, line 28 def create(*args, &block) session = new(*args) session.save(&block) session end
Generated with the Darkfish Rdoc Generator 2.