module Dry::Core::Deprecations

def deprecation_message(name, msg)

Other tags:
    Api: - private
def deprecation_message(name, msg)
  <<-MSG
    #{name} is deprecated and will be removed in the next major version
    #{msg}
  MSG
end