module GScholar::Utils

Public Class Methods

fetch(url) click to toggle source
# File lib/gscholar/utils.rb, line 7
def self.fetch(url)
  @fetcher ||= Fetcher.new
  @fetcher.fetch(url)
end