Sha256: 0084367c393d7d97cb585811c903ddbf62c1769a8ff703a32b621263b19bba25
Contents?: true
Size: 613 Bytes
Versions: 14
Compression:
Stored size: 613 Bytes
Contents
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
Version data entries
14 entries across 14 versions & 3 rubygems