I have a model Item:
class Item < ActiveRecord::Base
acts_as_revisable
end
When I try to use Item.find(2, :with_revisions) it comes back as an ItemRevision class instead of an Item class and I can't do things like assigning from another model (i.e. ItemList.items << item).
Is there a way to make it return Item or a way to make it into an Item?