lib/telegram/bot.rb in telegram-bot-0.14.4 vs lib/telegram/bot.rb in telegram-bot-0.15.0

- old
+ new

@@ -12,23 +12,23 @@ # Raised for valid telegram response with 404 status code. class NotFound < Error; end module_function - def deprecation_0_15 + def deprecation_0_16 @deprecation ||= begin require 'active_support/deprecation' - ActiveSupport::Deprecation.new('0.15', 'Telegram::Bot') + ActiveSupport::Deprecation.new('0.16', '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 :Tasks, 'telegram/bot/tasks' autoload :UpdatesController, 'telegram/bot/updates_controller' autoload :UpdatesPoller, 'telegram/bot/updates_poller' end end