我正在使用 Thor 并尝试将 YAML 输出到文件。在 irb 中,我得到了我的期望。YAML 格式的纯文本。但是当Thor中的方法的一部分时,它的输出是不同的......
class Foo < Thor
include Thor::Actions
desc "bar", "test"
def set
test = {"name" => "Xavier", "age" => 30}
puts test
# {"name"=>"Xavier", "age"=>30}
puts test.to_yaml
# !binary "bmFtZQ==": !binary |-
# WGF2aWVy
# !binary "YWdl": 30
File.open("data/config.yml", "w") {|f| f.write(test.to_yaml) }
end
end
有任何想法吗?