module DdSuppressor

Constants

VERSION

Public Class Methods

prepended(base) click to toggle source
# File lib/dd_suppressor.rb, line 7
def self.prepended(base)
  def base.warn(msg, tag: nil)
    case msg
    when "Form types were renamed to Params"
    else
      super(msg, tag: tag)
    end
  end
end