fix: Rails 8.1 incompatibility config_accessor
Logger functionality in ActionController implemented using AbstractController::Logger class. Following change fixes incompatibility with Rails 8.1.
Resolves https://github.com/telegram-bot-rb/telegram-bot/issues/263
I get
Could not find compatible versions
Because every version of telegram-bot depends on activesupport >= 4.0, < 8.1
and activejob >= 8.1.0 depends on activesupport = 8.1.0,
every version of telegram-bot is incompatible with activejob >= 8.1.0.
So, because Gemfile depends on activejob = 8.1.0
and Gemfile depends on telegram-bot >= 0,
version solving has failed.
I've tested this PR, works great for me. Would appreciate a merge, @printercu
Test fails
@mprokopov would you update the test? I am still on this PR
@printercu most likely the bug goes away if you update your ruby version
the test seems to fail on presumably unrelated problem but, I don't have an idea how to retrigger it w/o changing the code
Coveralls encountered an exception: OpenSSL::SSL::SSLError
it's basically a known bug with a openssl incompatibility if you don't explicitly include openssl as a gem with older ruby versions.