6

フォーマットを維持しながら、rubyでPsychを使用してYAMLにダンプしたいフォーマットされたデータ(JSONなど)の大きな文字列があります。

基本的に、JSONをリテラルスタイルを使用してYAMLに表示したいと思います。

---
json: |
  {
    "page": 1,
    "results": [
      "item", "another"
    ],
    "total_pages": 0
  }

ただし、使用するYAML.dump場合はリテラルスタイルを使用しません。私はこのようなものを手に入れます:

---
json: ! "{\n  \"page\": 1,\n  \"results\": [\n    \"item\", \"another\"\n  ],\n  \"total_pages\":
  0\n}\n"

必要なスタイルでスカラーをダンプするようにPsychに指示するにはどうすればよいですか?


解決:

ここで拡張しているソリューションを提供してくれたAaronPattersonに大いに感謝します:https ://gist.github.com/2023978

少し冗長ですが、その要点は、YAMLのリテラルスタイルを使用して出力されるように、rubyの特定の文字列にタグを付けるための実用的な方法です。

4

1 に答える 1

11
require 'psych'

# Construct an AST
visitor = Psych::Visitors::YAMLTree.new({})
visitor << DATA.read
ast = visitor.tree

# Find all scalars and modify their formatting
ast.grep(Psych::Nodes::Scalar).each do |node|
  node.plain  = false
  node.quoted = true
  node.style  = Psych::Nodes::Scalar::LITERAL
end

begin
  # Call the `yaml` method on the ast to convert to yaml
  puts ast.yaml
rescue
  # The `yaml` method was introduced in later versions, so fall back to
  # constructing a visitor
  Psych::Visitors::Emitter.new($stdout).accept ast
end

__END__
{
  "page": 1,
  "results": [
    "item", "another"
],
  "total_pages": 0
}
于 2012-03-12T16:20:59.673 に答える