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

Version Path
sportdb-1.9.3 lib/sportdb/matcher.rb
sportdb-1.9.2 lib/sportdb/matcher.rb
sportdb-1.9.1 lib/sportdb/matcher.rb
sportdb-1.9.0 lib/sportdb/matcher.rb
sportdb-1.8.29 lib/sportdb/matcher.rb
sportdb-1.8.28 lib/sportdb/matcher.rb
sportdb-1.8.27 lib/sportdb/matcher.rb
sportdb-1.8.26 lib/sportdb/matcher.rb
sportdb-1.8.25 lib/sportdb/matcher.rb
sportdb-1.8.24 lib/sportdb/matcher.rb
sportdb-1.8.23 lib/sportdb/matcher.rb