Sha256: 2cdd8f42cf0c04bd02b85e356e8751badac30f7ad0fd74b61644976676b55d4d

Contents?: true

Size: 914 Bytes

Versions: 3

Compression:

Stored size: 914 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, help: { "8ball" => "Shakes the eightball" }

      def shake(response)
        response.reply RESPONSES.shuffle.first
      end

    end

    Lita.register_handler(Eightball)
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
lita-eightball-1.0.4 lib/lita/handlers/eightball.rb
lita-eightball-1.0.3 lib/lita/handlers/eightball.rb
lita-eightball-1.0.1 lib/lita/handlers/eightball.rb