Sha256: a18dcae993cc75026e49109d41384cfdfbbcdf2a4a061780ffc596caf5949a35

Contents?: true

Size: 310 Bytes

Versions: 6

Compression:

Stored size: 310 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.
    # - +value+ [String] string value for the comment
    def initialize(value)
      super
    end
  end # Comment
end # Ox

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ox-2.14.20 lib/ox/comment.rb
ox-2.14.19 lib/ox/comment.rb
ox-2.14.18 lib/ox/comment.rb
ox-2.14.17 lib/ox/comment.rb
ox-2.14.16 lib/ox/comment.rb
ox-2.14.15 lib/ox/comment.rb