8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# File 'lib/worlddb/stats.rb', line 8
def tables
puts "Stats:"
puts " #{'%5d' % Continent.count} continents"
puts " #{'%5d' % Country.count} countries (#{Country.where(s: true).count} supras, #{Country.where(d:true).count} deps), #{Country.where(m:true).count} miscs)"
puts " #{'%5d' % Region.count} regions"
puts " #{'%5d' % City.where(m: true).where(c: false).count} metros"
puts " #{'%5d' % City.where(c: true).count} cities (#{City.where(c: true).where(m: true).count} metros)"
puts " #{'%5d' % City.where(d: true).count} districts"
puts " #{'%5d' % Place.count} places"
puts " #{'%5d' % Name.count} names"
puts " #{'%5d' % Lang.count} langs"
puts " #{'%5d' % Usage.count} usages"
puts " #{'%5d' % CountryCode.count} (country) codes"
end
|