open-source-ios-apps/.github/osia_history_missing.rb
2016-07-27 21:58:09 -07:00

13 lines
195 B
Ruby

require_relative 'osia_helper'
j = get_json
apps = j['projects']
i = 0
apps.each do |a|
if a['date_added'].nil?
puts "#{i + 1}. History missing for #{a['title']}"
i = i + 1
end
end