mirror of
https://github.com/dkhamsing/open-source-ios-apps.git
synced 2024-12-22 21:38:44 +01:00
[script] check titles, descriptions, categories
This commit is contained in:
parent
cae0484b9b
commit
f90fc58986
11
.github/osia_get_links.rb
vendored
11
.github/osia_get_links.rb
vendored
@ -1,7 +1,7 @@
|
||||
require_relative 'osia_helper'
|
||||
|
||||
OUTPUT = 'check-links.txt'
|
||||
HP = 'check-homepages.txt'
|
||||
OUTPUT = 'check-unique.txt' # should be unique
|
||||
HP = 'check-links.txt' # allow dupes
|
||||
|
||||
def apps_archived(apps)
|
||||
a = apps.select {|a| a['tags'] != nil }.select {|b| b['tags'].include?'archive'}
|
||||
@ -27,6 +27,13 @@ File.open(OUTPUT, 'w') { |f| f.puts links }
|
||||
hp = []
|
||||
active.each do |z|
|
||||
hp.push z['homepage'] unless z['homepage'].nil?
|
||||
hp.push z['title'] unless z['title'].nil?
|
||||
hp.push z['description'] unless z['description'].nil?
|
||||
end
|
||||
|
||||
c = j['categories']
|
||||
c.each do |z|
|
||||
hp.push z['title']
|
||||
end
|
||||
|
||||
hp.each_with_index { |z, i| puts "#{i+1} #{z}" }
|
||||
|
Loading…
Reference in New Issue
Block a user