Name Last Update
..
lib Loading commit data...
tasks Loading commit data...
test Loading commit data...
MIT-LICENSE Loading commit data...
README Loading commit data...
Rakefile Loading commit data...
init.rb Loading commit data...

README

ActiveRecordTableless
=====================

Rails plugin allowing ActiveRecord models to be used with validations but
without being backed by a database table.

Install
=======

script/plugin install git://github.com/robinsp/active_record_tableless.git

Example
=======

class TablelessModel < ActiveRecord::Base
tableless :columns => [
[:email, :string],
[:password, :string],
[:password_confirmation]
]

validates_presence_of :email, :password, :password_confirmation
validates_confirmation_of :password

end

Copyright (c) 2008 [name of plugin creator], released under the MIT license