Skip to content

Instantly share code, notes, and snippets.

@jmoses
Created January 19, 2012 13:31
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 jmoses/1640065 to your computer and use it in GitHub Desktop.
Save jmoses/1640065 to your computer and use it in GitHub Desktop.
class User
ROLES = %w( doctor patient )
attr_accessor :role
def initialize( role )
raise ArgumentError.new("#{role} isn't a valid role") unless ROLES.include?(role.to_s)
@role = role.to_s
end
ROLES.each do |role|
define_method("#{role}?".to_sym) do
self.role == role
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment