class AhlScraper::PlayoffBracketDataFetcher
Public Class Methods
new(season_id)
click to toggle source
# File lib/ahl_scraper/fetchers/playoff_bracket_data_fetcher.rb, line 5 def initialize(season_id) @season_id = season_id end
Public Instance Methods
call()
click to toggle source
# File lib/ahl_scraper/fetchers/playoff_bracket_data_fetcher.rb, line 9 def call JSON.parse(Nokogiri::HTML(URI.parse(url).open).text[5..-2], symbolize_names: true).dig(:SiteKit, :Brackets) end
Private Instance Methods
url()
click to toggle source
# File lib/ahl_scraper/fetchers/playoff_bracket_data_fetcher.rb, line 15 def url "https://lscluster.hockeytech.com/feed/index.php?feed=modulekit&view=brackets&fmt=json&season_id=#{@season_id}&key=ccb91f29d6744675&client_code=ahl&site_id=3&lang=en&league_id=&callback=json" # rubocop:disable Layout/LineLength end