Sha256: 97e462f4150c25f68746a7d86df92decef1bdd9722a85e59fd23f47130efaaf0
Contents?: true
Size: 1.11 KB
Versions: 4
Compression:
Stored size: 1.11 KB
Contents
require 'telegram/bot/config_methods' module Telegram extend Bot::ConfigMethods module Bot class Error < StandardError; end # Raised for valid telegram response with 403 status code. class Forbidden < Error; end # Raised for valid telegram response with 404 status code. class NotFound < Error; end module_function def deprecation_0_15 @deprecation ||= begin require 'active_support/deprecation' ActiveSupport::Deprecation.new('0.15', 'Telegram::Bot') end end autoload :Async, 'telegram/bot/async' 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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
telegram-bot-0.14.4 | lib/telegram/bot.rb |
telegram-bot-0.14.3 | lib/telegram/bot.rb |
telegram-bot-0.14.2 | lib/telegram/bot.rb |
telegram-bot-0.14.1 | lib/telegram/bot.rb |