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?

link|improve this question

31% accept rate
1  
I guess you could find some answers in stackoverflow.com/questions/7988410/…. Similar question to yours. – Unknown_Guy Jan 28 at 0:30
feedback

1 Answer

You should have a look at ActiveAttr, it provides typecasted attributes like this:

class Person
  include ActiveAttr::TypecastedAttributes
  attribute :age, :type => Integer
end

There is also a RailsCast about ActiveAttr.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.