Skip to content

Instantly share code, notes, and snippets.

@rob-race
Created October 9, 2017 20:30
Show Gist options
  • Save rob-race/ab0b74fd5fbf0e11f825042e615523e9 to your computer and use it in GitHub Desktop.
Save rob-race/ab0b74fd5fbf0e11f825042e615523e9 to your computer and use it in GitHub Desktop.
class EmailProcessor
attr_reader :email
def initialize(email)
@email = email
end
TASK_TYPE_HASH = {
'[d]' => 'Did',
'[t]' => 'Todo',
'[b]' => 'Blocker'
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment