thor_yaml()private
No documentation available.
# File lib/bundler/vendor/thor/lib/thor/runner.rb, line 184
def thor_yaml
@thor_yaml ||= begin
yaml_file = File.join(thor_root, "thor.yml")
yaml = YAML.load_file(yaml_file) if File.exist?(yaml_file)
yaml || {}
end
end