App-Open-Source-per-iPhone-.../.github/osia_history_missing.rb

13 lines
195 B
Ruby
Raw Normal View History

2016-07-27 23:51:37 +02:00
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