1
0
mirror of https://github.com/dkhamsing/open-source-ios-apps.git synced 2024-12-20 16:22:05 +03:00
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