class Exlibris::Primo::WebService::Response::GetReviews

Public Instance Methods

reviews() click to toggle source
# File lib/exlibris/primo/web_service/response/reviews.rb, line 16
def reviews
  @reviews ||= xml.root.xpath("//tags_reviews:Review", response_namespaces).collect { |review|
      Exlibris::Primo::Review.new(:raw_xml => review.to_xml) }
end