1
0
mirror of https://github.com/dkhamsing/open-source-ios-apps.git synced 2025-02-11 01:10:36 +01:00
2016-05-12 07:17:49 -07:00

10 lines
141 B
Ruby

require 'json'
c = File.read 'contents.json'
j = JSON.parse c
c = j['categories']
c.sort_by { |h| h['title']}
.each { |x| puts x['id']}