Sha256: bd8bbbe1a33c44166429be1a77982f5c66cf27ca6ff89ab525dbe21c21e21cb9
Contents?: true
Size: 460 Bytes
Versions: 1
Compression:
Stored size: 460 Bytes
Contents
class User include DataMapper::Resource property :id, Serial property :username, String devise :authenticatable, :http_authenticatable, :confirmable, :lockable, :recoverable, :registerable, :rememberable, :timeoutable, :token_authenticatable, :trackable, :validatable timestamps :at def save!(*args) save end def self.create!(*args) create(*args) end def self.destroy_all all.destroy end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
devise-1.1.rc0 | test/rails_app/app/data_mapper/user.rb |