class Celly::Standings

Constants

BASE_URL

Public Instance Methods

overall(season) click to toggle source
# File lib/celly/standings.rb, line 7
def overall(season)
  end_point = "/standings?#{season}"
  uri = URI("#{BASE_URL}#{end_point}")
  response = Net::HTTP.get_response(uri)

  if response.code == '200'
    json_response = JSON.parse(response.body)
    
    {status: response.code, message: response.message, data: json_response["records"]}
  else
    {status: response.code, message: response.message}
  end
end