lib/ruboty/handlers/ragoon.rb in ruboty-ragoon-0.3.1 vs lib/ruboty/handlers/ragoon.rb in ruboty-ragoon-0.4.0
- old
+ new
@@ -3,14 +3,14 @@
class Ragoon < Base
on(/grn event(?<date>\Z|\s+.+)/, name: 'schedule', description: 'retrieve schedule from garoon')
on(/grn notice/, name: 'notification', description: 'show new notification from garoon')
def schedule(message)
- ::Ruboty::Actions::Event.new(message).call
+ ::Ruboty::Actions::Ragoon::Event.new(message).call
end
def notification(message)
- ::Ruboty::Actions::Notification.new(message).call
+ ::Ruboty::Actions::Ragoon::Notification.new(message).call
end
end
end
end