diff --git a/.github/osia_screenshots_missing.rb b/.github/osia_screenshots_missing.rb new file mode 100644 index 00000000..6722e9ba --- /dev/null +++ b/.github/osia_screenshots_missing.rb @@ -0,0 +1,21 @@ +require_relative 'osia_helper' + +j = get_json +apps = j['projects'] + +i = 0 +apps.select {|a| a['screenshots'].nil? }.each do |a| + # if a['screenshots'].nil? + puts "#{i + 1}. Screenshots missing for #{a['title']}" + i = i + 1 + # end +end + +# apps.select {|a| a['screenshots']!=nil }.each do |a| +# s = a['screenshots'] +# if s.count==0 +# puts s +# puts "#{i + 1}. Screenshots missing for #{a['title']}" +# i = i + 1 +# end +# end