postmodern/ruby-nmap

View on GitHub
lib/nmap/xml/postscript.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require_relative 'scripts'

module Nmap
  class XML
    #
    # Represents the `postscript` element.
    #
    # @since 1.0.0
    #
    class Postscript

      include Scripts

      #
      # Initializes the Postscript object.
      #
      # @param [Nokogiri::XML::Node] node
      #   The XML node that contains the host information.
      #
      def initialize(node)
        @node = node
      end

    end
  end
end