1
0
mirror of https://github.com/dkhamsing/open-source-ios-apps.git synced 2024-12-19 07:41:34 +03:00
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