module Exlibris::Primo::WebService::Response::Records

Public Instance Methods

records() click to toggle source
# File lib/exlibris/primo/web_service/response/records.rb, line 6
def records
  @records ||= xml.xpath("//pnx:record", response_namespaces).collect { |record|
      Exlibris::Primo::Record.new(:raw_xml => record.to_xml, :namespaces => record.namespaces) }
end