Method: WorldDb::Model::CountrySerializer#as_row

Defined in:
lib/worlddb/serializers/country.rb

#as_rowObject



17
18
19
20
21
22
23
24
25
26
27
# File 'lib/worlddb/serializers/country.rb', line 17

def as_row

  ## todo: add tags too??

  data = { key:      country.key,
           name:     country.name,
           code:     country.code,
           pop:      country.pop,
           area:     country.area,
           synonyms: country.synonyms }
   data
end