RubyでYAML設定ファイルを読み取りと書き込み

rubyコード:
equire 'yaml’
configuration = { 'color’ => 'blue’,
'font’ => 'new romain’,
'font-size’ => 7 }
open('text.cfg’, 'w’) { |f| YAML.dump(configuration, f) }

open('text.cfg’) { |f| puts f.read }

open('text.cfg’) { |f| YAML.load(f) }

Development

Posted by arkgame