open-source-ios-apps/.github/osia_helper.rb
2016-05-19 02:13:25 +00:00

11 lines
172 B
Ruby

require 'json'
FILE = 'contents.json'
def get_json
JSON.parse(File.read FILE)
end
def osia_allowed_categories(c)
c.sort_by { |h| h['title']}.map { |x| x['id']}
end