class Pfm::Command::Generate

def needs_help?(params)

we delegate the request to the specified generator.
argument is a valid generator name, like `pfm generate cookbook -h`,
"--help". Here we override that behavior such that if the first
In the Base class, this is defined to be true if any args match "-h" or
def needs_help?(params)
  return false if have_generator?(params[0])
  super
end