Method: HTML::Table::ColGroup.end_tags=
- Defined in:
- lib/html/colgroup.rb
.end_tags=(bool) ⇒ Object
Sets whether or not end tags are included for each ColGroup object in the final HTML output. The default is true. Only true or false are valid arguments.
105 106 107 108 |
# File 'lib/html/colgroup.rb', line 105 def self.(bool) expect(bool,[TrueClass,FalseClass]) @end_tags = bool end |