Sha256: fce1d5f53e5ae28f217c88345223bdaf3d7dd48ccbc2bd919dee98df5ebad18a

Contents?: true

Size: 1.28 KB

Versions: 29

Compression:

Stored size: 1.28 KB

Contents

module Recurly
  class XML
    module NokogiriAdapter
      def initialize xml
        @root = Nokogiri::XML(xml) { |config| config.strict }.root
      rescue Nokogiri::XML::SyntaxError
        raise ParseError
      end

      def add_element name, value = nil
        root.add_child(node = ::Nokogiri::XML::Element.new(name, root.document))
        node << value if value
        node
      end

      def each_element xpath = nil
        elements = xpath.nil? ? root.children : root.xpath(xpath)
        elements.each { |el| yield el }
      end

      def each element = root
        element.elements.each do |el|
          yield el
          each el, &Proc.new
        end
      end

      def name
        root.name
      end

      def [] xpath
        root.at_xpath xpath
      end

      def text xpath = nil
        if node = (xpath ? root.at_xpath(xpath) : root)
          if node.text?
            node.text
          else
            node.children.map { |e| e.text if e.text? }.compact.join
          end
        end
      end

      def text= text
        root.content = text
      end

      def to_s
        root.to_xml(
          indent: 0,
          save_with: Nokogiri::XML::Node::SaveOptions::NO_EMPTY_TAGS
        ).gsub(/$\n/, '')
      end
    end

    include NokogiriAdapter
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
recurly-2.20.3 lib/recurly/xml/nokogiri.rb
recurly-2.20.2 lib/recurly/xml/nokogiri.rb
recurly-2.20.1 lib/recurly/xml/nokogiri.rb
recurly-2.20.0 lib/recurly/xml/nokogiri.rb
recurly-2.19.13 lib/recurly/xml/nokogiri.rb
recurly-2.19.12 lib/recurly/xml/nokogiri.rb
recurly-2.19.11 lib/recurly/xml/nokogiri.rb
recurly-2.19.10 lib/recurly/xml/nokogiri.rb
recurly-2.19.9 lib/recurly/xml/nokogiri.rb
recurly-2.19.8 lib/recurly/xml/nokogiri.rb
recurly-2.19.7 lib/recurly/xml/nokogiri.rb
recurly-2.19.6 lib/recurly/xml/nokogiri.rb
recurly-2.19.5 lib/recurly/xml/nokogiri.rb
recurly-2.19.4 lib/recurly/xml/nokogiri.rb
recurly-2.19.3 lib/recurly/xml/nokogiri.rb
recurly-2.19.2 lib/recurly/xml/nokogiri.rb
recurly-2.19.1 lib/recurly/xml/nokogiri.rb
recurly-2.19.0 lib/recurly/xml/nokogiri.rb
recurly-2.18.34 lib/recurly/xml/nokogiri.rb
recurly-2.18.33 lib/recurly/xml/nokogiri.rb