Sha256: c4eceed72d30c910c5c2bf39d66bb0bab3d897007221b43b70596f11609824fe

Contents?: true

Size: 383 Bytes

Versions: 4

Compression:

Stored size: 383 Bytes

Contents

module Ox
  # Raw elements are used to inject existing XML strings into a document
  # WARNING: Use of this feature can result in invalid XML, since `value` is
  # injected as-is.
  class Raw < Node
    # Creates a new Raw element with the specified value.
    # @param value [String] string value for the comment
    def initialize(value)
      super
    end

  end # Raw
end # Ox

Version data entries

4 entries across 4 versions & 1 rubygems

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