mirror of
https://github.com/dkhamsing/open-source-ios-apps.git
synced 2024-11-23 21:34:39 +03:00
13 lines
195 B
Ruby
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
|