Sounds like a simple user table with manager_id.
create_table :users do |t|
# ...other columns...
t.integer :manager_id
end
class User < ActiveRecord::Base
# Returns all writers under this manager
has_many :writers, :class_name => 'User', :foreign_key => :manager_id
# Returns this writer's manager
belongs_to :manager, :class_name => 'User'
# Allows this user to be author of posts
has_many :posts
# Associates posts of all writers under this manager
has_many :writers_posts, :through => :writers, :class_name => 'Post'
# If user has no manager, she's a manager
def manager?
manager_id.nil?
end
# If user has a manager, she's a writer
def writer?
!manager?
end
end
This allows you to do the following things with your user.
if @user.manager?
@user.writers # => [<User>, <User>, ...]
@user.writers_posts # => [<Post>, <Post>, ...]
end
if @user.writer?
@user.manager # => <User>
end
This implementation determines whether a user is a manager or a writer simply by the presence of a manager. If a user has a manager, she must be a writer. Else, she's a manager. If this is not flexible enough you can add extra boolean columns specifying whether user is one, the other, or even both. Also note that this is simply a User model that has both writer and manager methods. So you could call @writer.writers_posts (which is not meant to be for a writer user), but you shouldn't.
Authentication
Since all you have is a regular User model, you can follow any Devise tutorial to setup authentication for it. Both writers and managers are just users who simply login.
Authorization
As far as permissions and post visibility, it all comes down to being able to call the above methods on your current user.
if current_user.manager?
current_user.writers_posts.each do |post|
# display post
end
end
So frankly, CanCan is an overkill. All you need to do is add a few before_filter and a few if current_user.manager? conditions in your views. CanCan is more comprehensive, and on my experience it's too much in most apps.