Sha256: 71dc99dc580ff611c1b986c88e48e3e2d8a1dfe6a4e5ef09067bedf8b4d4cbcc
Contents?: true
Size: 554 Bytes
Versions: 27
Compression:
Stored size: 554 Bytes
Contents
# frozen_string_literal: true module Kitchen # An element for a term # class TermElement < ElementBase # Creates a new +TermElement+ # # @param node [Nokogiri::XML::Node] the node this element wraps # @param document [Document] this element's document # def initialize(node:, document: nil) super(node: node, document: document, enumerator_class: TermElementEnumerator) end # Returns the short type # @return [Symbol] # def self.short_type :term end end end
Version data entries
27 entries across 27 versions & 1 rubygems