Sha256: 91dfe0d72b6d9b4e96e67c0d900371ebb57edb5d661022f4d83f7a5003eed9a8

Contents?: true

Size: 315 Bytes

Versions: 4

Compression:

Stored size: 315 Bytes

Contents

module Ox
  # Comments represent XML comments in an XML document. A comment has a value
  # attribute only.
  class Comment < Node
    # Creates a new Comment with the specified value.
    # @param value [String] string value for the comment
    def initialize(value)
      super
    end

  end # Comment
end # Ox

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ox-2.3.0 lib/ox/comment.rb
ox-2.2.4 lib/ox/comment.rb
ox-2.2.3 lib/ox/comment.rb
ox-2.2.2 lib/ox/comment.rb