Sha256: 43de86905c89d4b8a0a2c61d880c84a524aeb70aa9784067375c2466724a773f

Contents?: true

Size: 297 Bytes

Versions: 12

Compression:

Stored size: 297 Bytes

Contents

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

  end # Comment
end # Ox

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
ox-1.2.5 lib/ox/comment.rb
ox-1.2.4 lib/ox/comment.rb
ox-1.2.3 lib/ox/comment.rb
ox-1.2.2 lib/ox/comment.rb
ox-1.2.1 lib/ox/comment.rb
ox-1.2.0 lib/ox/comment.rb
ox-1.1.1 lib/ox/comment.rb
ox-1.1.0 lib/ox/comment.rb
ox-1.0.3 lib/ox/comment.rb
ox-1.0.2 lib/ox/comment.rb
ox-1.0.1 lib/ox/comment.rb
ox-1.0.0 lib/ox/comment.rb