class Reader < ActiveRecord::Base
  is_a_collection :of => ["blogs"]
end

class Feed < ActiveRecord::Base
  is_a_collection :for => ["blogs"]
end

class Blogs < ActiveRecord::Base
  is_a_collection :of => ["feeds","newspapers"], :for => ["readers"]
end