class Docks::Tags::Helper
Public Class Methods
new()
click to toggle source
# File lib/docks/tags/helper_tag.rb, line 4 def initialize @name = :helper end
Public Instance Methods
process(symbol)
click to toggle source
# File lib/docks/tags/helper_tag.rb, line 8 def process(symbol) symbol.update(@name) { |helper| helper.join("\n") } end