Skip to content

Instantly share code, notes, and snippets.

@Keqi
Created January 6, 2022 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Keqi/e6a357f2b8fb1812d1a65fafa5830139 to your computer and use it in GitHub Desktop.
Save Keqi/e6a357f2b8fb1812d1a65fafa5830139 to your computer and use it in GitHub Desktop.
class User
attr_reader :role
def initialize(role)
@role = role
end
def admin?
role == 'admin'
end
def marketer?
role == 'marketer'
end
def sales?
role == 'sales'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment