Class: Html::Tbody

Inherits:
Tag
  • Object
show all
Defined in:
lib/html/tbody.rb

Instance Method Summary collapse

Methods inherited from Tag

#attributes=, #to_s

Constructor Details

#initialize(rows = Row.new(Array.new(0)), **attrs) ⇒ Tbody



4
5
6
7
8
# File 'lib/html/tbody.rb', line 4

def initialize(rows = Row.new(Array.new(0)), **attrs)
  super(**attrs)

  @rows = rows
end

Instance Method Details

#empty?Boolean



10
11
12
# File 'lib/html/tbody.rb', line 10

def empty?
  @rows.nil? || @rows.empty?
end