Rename warn method to warn_for_deprecation

This commit is contained in:
Jordan Owens 2022-09-26 09:57:26 -04:00
parent e521b6042b
commit 21db005c71
2 changed files with 3 additions and 4 deletions

View File

@ -148,4 +148,3 @@ Naming/AccessorMethodName:
Style/SlicingWithRange:
Enabled: false

View File

@ -1408,7 +1408,7 @@ module Sinatra
end
def public=(value)
warn ':public is no longer used to avoid overloading Module#public, use :public_folder or :public_dir instead'
warn_for_deprecation ':public is no longer used to avoid overloading Module#public, use :public_folder or :public_dir instead'
set(:public_folder, value)
end
@ -1772,8 +1772,8 @@ module Sinatra
end
# used for deprecation warnings
def warn(message)
super message + "\n\tfrom #{cleaned_caller.first.join(':')}"
def warn_for_deprecation(message)
warn message + "\n\tfrom #{cleaned_caller.first.join(':')}"
end
# Like Kernel#caller but excluding certain magic entries