class Google::Scholar::AuthorsProfileDocument

Public Instance Methods

articles(force=false) click to toggle source
# File lib/google/scholar/document/authors_profile_document.rb, line 6
def articles(force=false)
  return @citations if @citations && !force
  @citations = []
  self.css(".cit-table tr.item").each {|row| @citations << Google::Scholar::ArticleSummary.new(row)}
  return @citations
end