lib/page_rankr/ranks/compete.rb in PageRankr-1.7.0 vs lib/page_rankr/ranks/compete.rb in PageRankr-1.7.1
- old
+ new
@@ -5,9 +5,11 @@
module PageRankr
class Ranks < Tracker
class Compete < Rank
def initialize(site)
@rank = Nokogiri::HTML(open(url(site))).search(xpath).to_s.gsub(',', '').to_i
+ rescue
+ @rank = 0 #compete only accepts urls without http:// and www, will be fixed in 2.0
end
def xpath
"//div[@id='rank']/div[@class='number value']/text()"
end
\ No newline at end of file