It seems like there should be a one-liner way to iterate over season and return the last season when show.has_season? evaluates to false.
def last_season(show)
season = 1
season += 1 while show.has_season?(season)
return season
end
Edit: has_season? involves an HTTP GET call, so I can't really see a clean way around iterating using it.