class Thor::Runner

def thor_yaml

def thor_yaml
  @thor_yaml ||= begin
    yaml_file = File.join(thor_root, "thor.yml")
    yaml      = YAML.load_file(yaml_file) if File.exists?(yaml_file)
    yaml || {}
  end
end