Sha256: a72da616349adbcbe4185ae89eebf9862829082d5a23e421032cb7fc5feaa177

Contents?: true

Size: 344 Bytes

Versions: 2

Compression:

Stored size: 344 Bytes

Contents

module Google
  module Scholar
    class Base
      attr_accessor :scraper
      def initialize(url)
        @scraper = Google::Scholar::Scraper.new(url)
        self
      end
      def self.search_author(author)
        url = Google::Scholar.author_search_url(author)
        Google::Scholar::AuthorSearch.new(url)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
google-scholar-0.0.2 lib/google/scholar/base.rb
google-scholar-0.0.1 lib/google/scholar/base.rb