I have declared apiaryio in my app Gemfile, and it causes a deprecation warning.
The current version specifier in gemspec forces to use an outdated version of Thor that is generating the following deprecation warning when used with relatively recent version of did_you_mean, such the ones bundled with recent ruby versions.
Calling `DidYouMean::SPELL_CHECKERS.merge!(error_name => spell_checker)' has been deprecated. Please call `DidYouMean.correct_error(error_name, spell_checker)' instead.
Relaxing the version allows Thor to be updated to more recent minor versions and fixes the deprecation warning.
I have declared apiaryio in my app Gemfile, and it causes a deprecation warning.
The current version specifier in gemspec forces to use an outdated version of Thor that is generating the following deprecation warning when used with relatively recent version of did_you_mean, such the ones bundled with recent ruby versions.
Relaxing the version allows Thor to be updated to more recent minor versions and fixes the deprecation warning.