文件名称:toml-rb:使用Citrus库的TOML解析器
文件大小:62KB
文件格式:ZIP
更新时间:2024-06-14 12:15:56
Ruby
甲苯胺 使用库的解析器。 支持的TOML规格: 0.5.0 安装 $ gem install toml-rb 解析器用法 require 'toml-rb' # From a file! path = File . join ( File . dirname ( __FILE__ ) , 'path' , 'to' , 'file' ) TomlRB . load_file ( path ) # From a stream! stream = <<-EOS title = "wow!" [awesome] you = true others = false EOS TomlRB . parse ( stream ) # => {"title"=>"wow!", "awesome"=>{"you"=>true, "others"=>false}} # Y