module Concurrent::Concern::Deprecation

def deprecated_method(old_name, new_name)

def deprecated_method(old_name, new_name)
  deprecated "`#{old_name}` is deprecated and it'll removed in next release, use `#{new_name}` instead", 3
end