class Ruboty::Handlers::Karma
Constants
- DELETE_PATTERN
- INCREMENT_PATTERN
- LIST_PATTERN
Public Instance Methods
delete(message)
click to toggle source
# File lib/ruboty/karma.rb, line 38 def delete(message) Ruboty::Karma::Actions::Delete.new(message).call end
increment(message)
click to toggle source
# File lib/ruboty/karma.rb, line 30 def increment(message) Ruboty::Karma::Actions::Increase.new(message).call end
list(message)
click to toggle source
# File lib/ruboty/karma.rb, line 34 def list(message) Ruboty::Karma::Actions::List.new(message).call end