1
0
mirror of https://github.com/dkhamsing/open-source-ios-apps.git synced 2024-12-26 00:13:37 +01:00
App-Open-Source-per-iPhone-.../.github/inspect.rb

16 lines
221 B
Ruby
Raw Normal View History

2016-05-12 16:35:44 +02:00
require 'json'
require 'pp'
if ARGV.count == 0
puts "Usage: ruby inspect.rb <project number>"
exit
end
c = File.read 'contents.json'
j = JSON.parse c
projects = j['projects']
proj = ARGV[0].to_i
pp projects[proj]