require "jsduck/tag/boolean_tag" module JsDuck::Tag # The @component tag should be rarely used explicitly as it gets # auto-detected by Process::Components for any component inheriting # from Ext.Component. class Component < BooleanTag def initialize @pattern = "component" @class_icon = { :small => File.dirname(__FILE__) + "/icons/component.png", :large => File.dirname(__FILE__) + "/icons/component-large.png", :redirect => File.dirname(__FILE__) + "/icons/component-redirect.png", :priority => PRIORITY_COMPONENT, } super end end end