method

thor_yaml

ruby latest stable - Class: Bundler::Thor::Runner

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

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