Method: WhatAWorld::Scraper::ScraperCountry#initialize
- Defined in:
- lib/what_a_world/scraper.rb
#initialize(url_extension) ⇒ ScraperCountry
Returns a new instance of ScraperCountry.
46 47 48 49 50 |
# File 'lib/what_a_world/scraper.rb', line 46 def initialize(url_extension) country_url = URL + url_extension html = open(country_url) @country_page = Nokogiri::HTML(html) end |