2009-12-08 08:48:31 -05:00
|
|
|
require 'ostruct'
|
|
|
|
|
2009-12-10 21:18:14 -05:00
|
|
|
Column = Struct.new(:name, :type, :limit)
|
|
|
|
Association = Struct.new(:klass)
|
2009-12-09 08:12:23 -05:00
|
|
|
|
2009-12-10 21:18:14 -05:00
|
|
|
class Company < Struct.new(:id, :name)
|
|
|
|
def self.all(options={})
|
|
|
|
all = (1..3).map{|i| Company.new(i, "Company #{i}")}
|
|
|
|
return [all.first] if options[:conditions]
|
|
|
|
return [all.last] if options[:order]
|
|
|
|
all
|
2009-12-09 08:12:23 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-12-08 08:48:31 -05:00
|
|
|
class User < OpenStruct
|
2009-12-09 21:22:53 -05:00
|
|
|
attr_reader :id
|
2009-12-08 08:48:31 -05:00
|
|
|
|
2009-12-09 21:22:53 -05:00
|
|
|
def initialize(attributes={})
|
|
|
|
@id = attributes.delete(:id)
|
|
|
|
super
|
2009-12-08 08:48:31 -05:00
|
|
|
end
|
|
|
|
|
2009-12-10 15:03:27 -05:00
|
|
|
def new_record!
|
|
|
|
@new_record = true
|
|
|
|
end
|
|
|
|
|
2009-12-08 08:48:31 -05:00
|
|
|
def new_record?
|
2009-12-10 15:03:27 -05:00
|
|
|
@new_record || false
|
2009-12-08 08:48:31 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def column_for_attribute(attribute)
|
2009-12-10 08:57:05 -05:00
|
|
|
column_type, limit = case attribute.to_sym
|
|
|
|
when :name, :status, :password then [:string, 100]
|
2009-12-08 08:48:31 -05:00
|
|
|
when :description then :text
|
|
|
|
when :age then :integer
|
2009-12-10 08:57:05 -05:00
|
|
|
when :credit_limit then [:decimal, 15]
|
2009-12-08 08:48:31 -05:00
|
|
|
when :active then :boolean
|
|
|
|
when :born_at then :date
|
|
|
|
when :delivery_time then :time
|
|
|
|
when :created_at then :datetime
|
|
|
|
when :updated_at then :timestamp
|
|
|
|
end
|
2009-12-10 21:18:14 -05:00
|
|
|
Column.new(attribute, column_type, limit)
|
2009-12-08 08:48:31 -05:00
|
|
|
end
|
|
|
|
|
2009-12-10 15:03:27 -05:00
|
|
|
def self.human_attribute_name(attribute)
|
2009-12-08 08:48:31 -05:00
|
|
|
case attribute
|
|
|
|
when 'name' then 'Super User Name!'
|
2009-12-09 17:36:21 -05:00
|
|
|
when 'description' then 'User Description!'
|
2009-12-10 17:11:15 -05:00
|
|
|
else attribute.humanize
|
2009-12-08 08:48:31 -05:00
|
|
|
end
|
|
|
|
end
|
2009-12-08 13:38:03 -05:00
|
|
|
|
2009-12-10 15:03:27 -05:00
|
|
|
def self.human_name
|
|
|
|
"User"
|
|
|
|
end
|
|
|
|
|
2009-12-10 21:18:14 -05:00
|
|
|
def self.reflect_on_association(association)
|
|
|
|
Association.new(Company) if association == :company
|
|
|
|
end
|
|
|
|
|
2009-12-08 13:38:03 -05:00
|
|
|
def errors
|
|
|
|
@errors ||= {
|
|
|
|
:name => "can't be blank",
|
|
|
|
:description => "must be longer than 15 characters",
|
|
|
|
:age => ["is not a number", "must be greater than 18"],
|
|
|
|
}
|
|
|
|
end
|
2009-12-08 08:48:31 -05:00
|
|
|
end
|