루비 yaml 파일 쓰기

1 개요[ | ]

루비 yaml 파일 쓰기
write_yaml_file.rb
# -*- encoding: utf-8 -*-
require 'yaml'
data = [{"name"=>"Xavier", "country"=>"Australia", "age"=>24}, {"name"=>"Jmnote", "country"=>'한국'}]
File.open("output.yml", "w") { |f| f.write(data.to_yaml) }
실행결과
root@zetawiki:~# ruby write_yaml_file.rb 
root@zetawiki:~# cat output.yml 
---
- name: Xavier
  country: Australia
  age: 24
- name: Jmnote
  country: 한국

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}