Method: YARD::Config.save
- Defined in:
- lib/yard/config.rb
.save ⇒ void
This method returns an undefined value.
Saves settings to CONFIG_FILE.
132 133 134 135 |
# File 'lib/yard/config.rb', line 132 def self.save require 'yaml' File.open(CONFIG_FILE, 'w') {|f| f.write(YAML.dump()) } end |