在Ruby on Rails上将json对象解压缩到.yml转换文件

时间:2015-03-26 07:40:44

标签: ruby-on-rails rails-i18n

我有json对象如下

  {
  'questions.new': 'New Question',
  'questions.other.recent': 'Recent',
  'questions.other.old': 'Old'
  }

我需要使用Ruby on Rails方法将此数据写入.yml文件。 我的预期文件如下

en:
  questions:
    new: 'New Question'
    other:
      recent: 'Recent'
      old: 'Old'

非常感谢有人帮我完成这项任务!

0 个答案:

没有答案