[script] create inspect [ci skip]

This commit is contained in:
dkhamsing 2016-05-12 07:35:44 -07:00
parent a82eadbba9
commit 5362c9110e
1 changed files with 15 additions and 0 deletions

15
.github/inspect.rb vendored Normal file
View File

@ -0,0 +1,15 @@
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]