LiveSourceLiveView

class View

Represents a single division of content on the page an provides helpers for rendering the content.

Definitions

def build_markup(builder)

Signature

returns Object

The generated HTML.

Implementation

def build_markup(builder)
	builder.inline_tag :div, id: @id, class: "live", data: @data do
		render(builder)
	end
end