-
-
Save soulcutter/4070615 to your computer and use it in GitHub Desktop.
categories
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Categories | |
ALL = [ | |
:BUSINESS, | |
:CALL, | |
:CONTACT, | |
:KNOWLEDGE, | |
:ENTERTAINMENT, | |
:EMAIL, | |
:HELP, | |
:TRAVEL, | |
:MUSIC, | |
:CALENDAR, | |
:WEATHER, | |
:REMINDER, | |
:ALARM, | |
:TIMER, | |
:STOPWATCH, | |
:NAVIGATION, | |
:TRANSIT, | |
:SEARCH, | |
:TEXT, | |
:SOCIAL, | |
:SPORTS, | |
:APPLICATION | |
].freeze | |
def self.valid?(arg) | |
ALL.include? arg | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment