DefaultsFor

This is a very basic way to setup default attributes for ActiveRecord without having to declare them in your database migrations.

Usage

class Person < ActiveRecord::Base
  defaults_for :first_name => "John", :last_name => "Doe",
    :email => "[email protected]"
end

…tests coming soon.