Class Wee::WrapperDecoration
In: lib/wee/components/wrapper_decoration.rb
Parent: Decoration

Methods

External Aliases

render_presenter_on -> render_on

Public Instance methods

Overwrite this method, and call render_inner(r) where you want the inner content to be drawn.

[Source]

# File lib/wee/components/wrapper_decoration.rb, line 12
    def render(r)
      render_inner(r)
    end

[Source]

# File lib/wee/components/wrapper_decoration.rb, line 16
    def render_inner(r)
      r.render_decoration(@next)
    end

[Validate]