我有一个用 ruby 编写的脚本来解析所有titles
外部 JSON 提要。现在我必须向他们展示data-source
twitter bootstrap 的 typeahead 实用程序。
require 'open-uri'
require 'json'
result = JSON.parse(open("http://data.example.com/locations.json").read)
result.each do |bldg|
puts bldg['title']
end
所以我想在 rails 应用程序中使用上面的代码片段。
如何在 Rails 应用程序中应用一些自定义 ruby?
谢谢!