module MasterView module Directives # just eat this output since it is only used for design time class Import < MasterView::DirectiveBase def priority DirectivePriorities::VeryHigh end def stag(dcs) #output nothing end def etag(dcs) tag = dcs.context[:tag] tag.content = [] # clear out any content including from children nil end end end end