module DeprecationToolkit::Warning
Public Instance Methods
deprecation_triggered?(str)
click to toggle source
# File lib/deprecation_toolkit/warning.rb, line 40 def deprecation_triggered?(str) DeprecationToolkit::Configuration.warnings_treated_as_deprecation.any? { |warning| warning =~ str } end
handle_multipart(str)
click to toggle source
# File lib/deprecation_toolkit/warning.rb, line 25 def handle_multipart(str) if @buffer str = @buffer + str @buffer = nil return str end if two_part_warning?(str) @buffer = str return end str end
two_part_warning?(str)
click to toggle source
Ruby 2.7 has two warnings for improper use of keyword arguments that are sent in two parts Example:
/path/to/caller.rb:1: warning: Using the last argument as keyword parameters is deprecated; \ maybe ** should be added to the call /path/to/calleee.rb:1: warning: The called method `method_name' is defined here
/path/to/caller.rb:1: warning: Passing the keyword argument as the last hash parameter is deprecated /path/to/calleee.rb:1: warning: The called method `method_name' is defined here
# File lib/deprecation_toolkit/warning.rb, line 18 def two_part_warning?(str) str.end_with?( "maybe ** should be added to the call\n", "Passing the keyword argument as the last hash parameter is deprecated\n", ) end