Class: Aureus::RowColumn

Inherits:
Renderable show all
Defined in:
lib/aureus/row.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Renderable

#compact, #compact_render, #content_tag, #init

Constructor Details

#initialize(width, content) ⇒ RowColumn

Returns a new instance of RowColumn.



54
55
56
57
# File 'lib/aureus/row.rb', line 54

def initialize	width, content
	@width = width
	@content = content
end

Instance Attribute Details

#contentObject (readonly)

Returns the value of attribute content.



52
53
54
# File 'lib/aureus/row.rb', line 52

def content
  @content
end

#widthObject (readonly)

Returns the value of attribute width.



52
53
54
# File 'lib/aureus/row.rb', line 52

def width
  @width
end

Instance Method Details

#renderObject



59
60
61
# File 'lib/aureus/row.rb', line 59

def render

end