i’m trying to decide among three ways to implement a tableless model.
- Active Record w/out migration
- ActiveModel
- ActiveAttr
Relationships and validations are highly desirable. I know ActiveRecord
will do that but will the other 2 as well. Is the ActiveRecord method
a hack and therefore not desirable?