I'm trying to do the following:
module ApplicationHelper
   class PModuleHelper
     include ActionView::Helpers::TagHelper
     def heading(head = "", &block)
       content = block_given? ? capture(&block) : head.to_s
       content_tag :h3, content, :class => :module_header
     end
   end
    def getmh
        PModuleHelper.new
    end
end
Either give a string (or symbol) to the method heading, or a block.
In View:
<% mh = getmh %>
<%= mh.heading :bla %> // WORKS
<%= mh.heading do %>   // FAILS
    test 123
<% end %>
(note the getmh is just for this example, the PModuleHelper is returned by some other process in my application, so no need to comment on this or suggest to make heading a normal helper method, not a class-method)
Unfortunately I always get the following error:
wrong number of arguments (0 for 1)
with linenumber for the capture(&block) call.
How to use capture inside own helper class?
 
    