1
0
mirror of https://github.com/dkhamsing/open-source-ios-apps.git synced 2025-01-28 17:29:21 +01:00

10 lines
141 B
Ruby
Raw Normal View History

2016-05-12 07:17:26 -07:00
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']}