Sha256: 082ef70d8f362822f2c6a72ff0fea1c5a20ae60ba01f9f50e86ca0204a256493

Contents?: true

Size: 910 Bytes

Versions: 1

Compression:

Stored size: 910 Bytes

Contents

require "lita"

module Lita
  module Handlers
    class Eightball < Handler

      RESPONSES = [
        "It is certain",
        "It is decidedly so",
        "Without a doubt",
        "Yes – definitely",
        "You may rely on it",
        "As I see it, yes",
        "Most likely",
        "Outlook good",
        "Signs point to yes",
        "Yes",
        "Reply hazy, try again",
        "Ask again later",
        "Better not tell you now",
        "Cannot predict now",
        "Concentrate and ask again",
        "Don't count on it",
        "My reply is no",
        "My sources say no",
        "Outlook not so good",
        "Very doubtful"
      ]
      
      route %r{8ball|eightball}i, :shake, command: true

      route %r{!8ball}i, :shake
      
      def shake(response)
        response.reply RESPONSES.shuffle.first
      end

    end

    Lita.register_handler(Eightball)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lita-eightball-1.0.0 lib/lita/handlers/eightball.rb