r7kamura/ellen

View on GitHub
lib/ruboty/handlers/ping.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Ruboty
  module Handlers
    class Ping < Base
      on(/ping\z/i, name: "ping", description: "Return PONG to PING")

      def ping(message)
        Ruboty::Actions::Ping.new(message).call
      end
    end
  end
end