ewlarson/uwdc

View on GitHub
lib/uwdc/struct_map.rb

Summary

Maintainability
A
0 mins
Test Coverage
module UWDC
  # Return the structure of a METS file
  class StructMap < Mets
    def nodes
      @xml.nodes.xpath("//structMap[contains(@ID,'#{@id}')]")
    end
  
    def structure
      nodes.xpath('div').inject([]){|result, div| result << Div.new(div)}
    end
  end
end