Sha256: 867a86e5bcec794241c38937d1272dc37a6aaa8a53ec04ebe3d38d6c6b5bf636
Contents?: true
Size: 667 Bytes
Versions: 16
Compression:
Stored size: 667 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_stadiums_for_country( name, &blk ) match_xxx_for_country( name, 'stadiums', &blk ) end end # module Matcher end # module SportDb
Version data entries
16 entries across 16 versions & 1 rubygems