module DSLKit::ParameterizedModule

def parameterize_for(*args, &block)

_parameterize_ method should return a configured module.
calling the parameterize method has been called with these arguments. The
Pass _args_ and _block_ to configure the module and then return it after
def parameterize_for(*args, &block)
  respond_to?(:parameterize) ? parameterize(*args, &block) : self
end