Sha256: 399a710509fca02dc627f724f6fcc72e29f96c7ab89bd8fbd4cd2ce751d703e4
Contents?: true
Size: 447 Bytes
Versions: 14
Compression:
Stored size: 447 Bytes
Contents
module Saml module Kit class Organization include XmlParseable attr_reader :content def initialize(node) @to_nokogiri = node @content = node.to_s end # Returns the Organization Name def name at_xpath('./md:OrganizationName').try(:text) end # Returns the Organization URL def url at_xpath('./md:OrganizationURL').try(:text) end end end end
Version data entries
14 entries across 14 versions & 1 rubygems