class Google::Scholar::Base

Attributes

scraper[RW]

Public Class Methods

new(url) click to toggle source
# File lib/google/scholar/base.rb, line 5
def initialize(url)
  @scraper = Google::Scholar::Scraper.new(url)
  self
end
search_author(author) click to toggle source
# File lib/google/scholar/base.rb, line 9
def self.search_author(author)
  url = Google::Scholar.author_search_url(author)
  Google::Scholar::AuthorSearch.new(url)
end