class SoccersApi::Leader
Constants
- LEADER
Public Class Methods
topassists(season_id)
click to toggle source
# File lib/soccers_api/leader.rb, line 25 def topassists(season_id) SoccersApi.api_url( api_for: LEADER, type: "topassists", id_type: 'season_id', id: season_id ) end
topcards(season_id)
click to toggle source
# File lib/soccers_api/leader.rb, line 7 def topcards(season_id) SoccersApi.api_url( api_for: LEADER, type: "topcards", id_type: 'season_id', id: season_id ) end
topscorers(season_id)
click to toggle source
# File lib/soccers_api/leader.rb, line 16 def topscorers(season_id) SoccersApi.api_url( api_for: LEADER, type: "topscorers", id_type: 'season_id', id: season_id ) end