class SportDb::Import::Catalog
Public Instance Methods
build_club_index()
click to toggle source
# File lib/footballdb/clubs/auto.rb, line 14 def build_club_index() FootballDb::Import.build_club_index; end
build_country_index()
click to toggle source
# File lib/footballdb/clubs/auto.rb, line 13 def build_country_index() CountryIndex.new( Fifa.countries ); end
clubs()
click to toggle source
# File lib/footballdb/clubs/auto.rb, line 17 def clubs() @clubs ||= build_club_index; end
countries()
click to toggle source
# File lib/footballdb/clubs/auto.rb, line 16 def countries() @countries ||= build_country_index; end