Sha256: 765d4b8e2deb9a7c7cf8c80d13883a3a920a613b1c45374509d3be34c4b4b1f5
Contents?: true
Size: 859 Bytes
Versions: 8
Compression:
Stored size: 859 Bytes
Contents
require 'telegram/bot/config_methods' module Telegram extend Bot::ConfigMethods module Bot class Error < StandardError; end class NotFound < Error; end class Forbidden < Error; end autoload :Async, 'telegram/bot/async' autoload :Botan, 'telegram/bot/botan' autoload :Client, 'telegram/bot/client' autoload :ClientStub, 'telegram/bot/client_stub' autoload :DebugClient, 'telegram/bot/debug_client' autoload :Initializers, 'telegram/bot/initializers' autoload :Middleware, 'telegram/bot/middleware' autoload :RSpec, 'telegram/bot/rspec' autoload :UpdatesController, 'telegram/bot/updates_controller' autoload :UpdatesPoller, 'telegram/bot/updates_poller' end end require 'telegram/bot/railtie' if defined?(Rails)
Version data entries
8 entries across 8 versions & 1 rubygems