Class: JsDuck::Tag::Chainable
- Defined in:
- lib/jsduck/tag/chainable.rb
Overview
Implementation of @chainable tag
Instance Attribute Summary
Attributes inherited from MetaTag
#assets, #boolean, #context, #formatter, #key, #multiline, #name, #position, #signature
Instance Method Summary collapse
-
#initialize ⇒ Chainable
constructor
A new instance of Chainable.
Methods inherited from MetaTag
descendants, #format, #to_html, #to_value
Constructor Details
#initialize ⇒ Chainable
Returns a new instance of Chainable.
6 7 8 9 10 11 |
# File 'lib/jsduck/tag/chainable.rb', line 6 def initialize @name = "chainable" @key = :chainable @signature = {:long => "chainable", :short => ">"} # show small right-arrow @boolean = true end |