Sha256: 94e532144d281435e99bf66fa14af696ca71adaa4e3eb28a06fff2dabd6b52fe

Contents?: true

Size: 422 Bytes

Versions: 3

Compression:

Stored size: 422 Bytes

Contents

require 'nmap/xml/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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby-nmap-1.0.2 lib/nmap/xml/postscript.rb
ruby-nmap-1.0.1 lib/nmap/xml/postscript.rb
ruby-nmap-1.0.0 lib/nmap/xml/postscript.rb