Sha256: 7543af49ad75e5b1aef3ccb5b98cbc6615680fe73efe7c5010ff90b2be73d54d
Contents?: true
Size: 775 Bytes
Versions: 11
Compression:
Stored size: 775 Bytes
Contents
# encoding: utf-8 module SportDb module Matcher include WorldDb::Matcher def match_leagues_for_country( name, &blk ) match_xxx_for_country( name, 'leagues', &blk ) end def match_teams_for_country( name, &blk ) match_xxx_for_country( name, 'teams', &blk ) end def match_tracks_for_country( name, &blk ) match_xxx_for_country( name, 'tracks', &blk ) end def match_skiers_for_country( name, &blk ) match_xxx_for_country( name, 'skiers', &blk ) end def match_players_for_country( name, &blk ) match_xxx_for_country( name, 'players', &blk ) end def match_stadiums_for_country( name, &blk ) match_xxx_for_country( name, 'stadiums', &blk ) end end # module Matcher end # module SportDb
Version data entries
11 entries across 11 versions & 1 rubygems