Sha256: 93a2122363483ccd7e18f5468210089e81c637db6c479d64887e2bb80a767722
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 KB
Contents
require 'nokogiri' module Google module Scholar class Author def initialize(document) @summary_doc = document end def name @name ||= @summary_doc.css("td:last a:first").text.strip.gsub('\n','') end def citation_count @citation_count ||= @summary_doc.css("td:last").children.reject{|x| !x.text?}.last.text.split(" ").last.to_i end def author_url @author_url ||= "#{Google::Scholar.google_url}#{@summary_doc.css("td:last a").first.attr("href")}&pagesize=100" end def full_profile @full_profile ||= Google::Scholar::Scraper.new(author_url).documents.first end def citations full_profile.css("#stats td.cit-data").first.text.to_i end def id @id ||= @summary_doc.css("td:last a:first").attr("href").to_s.match(/user=(.*)&/)[1] end def articles @articles ||= Google::Scholar::ArticleEnumerator.new(Google::Scholar::Scraper.new(nil,self.full_profile)) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
google-scholar-0.0.2 | lib/google/scholar/author.rb |
google-scholar-0.0.1 | lib/google/scholar/author.rb |