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

Version Path
sportdb-1.8.22 lib/sportdb/matcher.rb
sportdb-1.8.21 lib/sportdb/matcher.rb
sportdb-1.8.20 lib/sportdb/matcher.rb
sportdb-1.8.19 lib/sportdb/matcher.rb
sportdb-1.8.18 lib/sportdb/matcher.rb
sportdb-1.8.17 lib/sportdb/matcher.rb
sportdb-1.8.16 lib/sportdb/matcher.rb
sportdb-1.8.15 lib/sportdb/matcher.rb
sportdb-1.8.14 lib/sportdb/matcher.rb
sportdb-1.8.13 lib/sportdb/matcher.rb
sportdb-1.8.12 lib/sportdb/matcher.rb
sportdb-1.8.11 lib/sportdb/matcher.rb
sportdb-1.8.10 lib/sportdb/matcher.rb
sportdb-1.8.9 lib/sportdb/matcher.rb
sportdb-1.8.8 lib/sportdb/matcher.rb
sportdb-1.8.7 lib/sportdb/matcher.rb