thoughtbot / upcase

Sharpen your programming skills.
https://thoughtbot.com/upcase
MIT License
309 stars 36 forks source link

Fix `TimeWithZone#to_s(:rfc822)` is deprecated #2643

Closed smaboshe closed 1 week ago

smaboshe commented 1 week ago

When running bundle exec rspec, we are getting:

DEPRECATION WARNING: TimeWithZone#to_s(:rfc822) is deprecated. Please use TimeWithZone#to_fs(:rfc822) instead. (called from call at ~/upcase/spec/support/host_map.rb:7)

This commit resolves the issue by using TimeWithZone#to_fs(:rfc822).

Resolves #2630