module BibURI::Driver

Public Class Methods

canonical(id) click to toggle source

Returns a canonical form of the identifier, preferably as a URL.

# File lib/biburi/driver.rb, line 29
def self.canonical(id)
  raise NotImplementedError
end
drivers() click to toggle source

Return a list of drivers.

# File lib/biburi/driver.rb, line 18
def self.drivers
  return @@drivers
end
lookup(id) click to toggle source

Returns a dictionary of parsed values with BibTeX names by looking up the provided id.

# File lib/biburi/driver.rb, line 35
def self.lookup(id)
  raise NotImplementedError
end
supported?(id) click to toggle source

Returns true if this Lookup supports this id.

# File lib/biburi/driver.rb, line 23
def self.supported?(id)
  raise NotImplementedError
end