Sha256: 55f9a0228e27bf5ee19db4a7246205524ffcb8e371c74aad20a11642f1d3e5b7
Contents?: true
Size: 381 Bytes
Versions: 4
Compression:
Stored size: 381 Bytes
Contents
# frozen_string_literal: true require_relative "handler/chat_router" require_relative "handler/http_router" require_relative "handler/event_router" module Lita # Base class for objects that add new behavior to Lita. {Handler} is simply a class with all # types of routers mixed in. class Handler extend ChatRouter extend HTTPRouter extend EventRouter end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rita-5.0.0.alpha.4 | lib/lita/handler.rb |
rita-5.0.0.alpha.3 | lib/lita/handler.rb |
rita-5.0.0.alpha.2 | lib/lita/handler.rb |
rita-5.0.0.alpha.1 | lib/lita/handler.rb |