So I seems I was stupid and haven\'t checked running in production-env for a long time, and now that I\'m trying to deploy, I\'m getting this annoying error. Any ideas?
I can't say if this is a typo or the real code but:
class User < InheritedResources::Base include HistoryTools end
Should probably be
class User < ActiveRecord::Base include HistoryTools end
InheritedResources should be used for controllers, not models.