This Railscast describes how to set up a tableless model in Rails 3 as in:
class Message
include ActiveModel::Validations
include ActiveModel::Conversion
extend ActiveModel::Naming
attr_accessor :name, :email, :content
validates_presence_of :name
validates_format_of :email, :with => /^[-a-z0-9_+\.]+\@([-a-z0-9]+\.)+[a-z0-9]{2,4}$/i
validates_length_of :content, :maximum => 500
def initialize(attributes = {})
attributes.each do |name, value|
send("#{name}=", value)
end
end
def persisted?
false
end
end
It works quite well but what it doesn't do it let Rails know what types the attributes are. This means that while various plugins / libraries work, they tend to fall back to effectively seeing the attributes as an 'any' type. For example to_xml lists them as type 'yaml'.
Is there a way to tell Rails what the types of the attributes are in Tableless models?