mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
9 lines
225 B
Ruby
9 lines
225 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
# Suppress warnings about nil deprecation
|
||
|
|
# https://github.com/jnunemaker/httparty/issues/568#issuecomment-1450473603
|
||
|
|
|
||
|
|
HTTParty::Response.class_eval do
|
||
|
|
def warn_about_nil_deprecation; end
|
||
|
|
end
|