Sha256: e348e5ae6e2f81ef753e0bdac20a5a4884dd5895cfab9b171b5e02bb0deb5f89

Contents?: true

Size: 667 Bytes

Versions: 35

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_clubs_for_country( name, &blk )
    match_xxx_for_country( name, 'clubs', &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

35 entries across 35 versions & 2 rubygems

Version Path
sportdb-models-1.11.1 lib/sportdb/matcher.rb
sportdb-models-1.11.0 lib/sportdb/matcher.rb
sportdb-models-1.10.1 lib/sportdb/matcher.rb
sportdb-models-1.10.0 lib/sportdb/matcher.rb
sportdb-1.9.16 lib/sportdb/matcher.rb
sportdb-1.9.15 lib/sportdb/matcher.rb
sportdb-1.9.14 lib/sportdb/matcher.rb
sportdb-1.9.13 lib/sportdb/matcher.rb
sportdb-1.9.12 lib/sportdb/matcher.rb
sportdb-1.9.11 lib/sportdb/matcher.rb
sportdb-1.9.10 lib/sportdb/matcher.rb
sportdb-1.9.9 lib/sportdb/matcher.rb
sportdb-1.9.8 lib/sportdb/matcher.rb
sportdb-1.9.7 lib/sportdb/matcher.rb
sportdb-1.9.6 lib/sportdb/matcher.rb