Categories: None [Edit]

yard-heuristics

https://rubygems.org/gems/yard-heuristics
YARD-Heuristics YARD-Heuristics heuristically determines types of parameters and return values for YARD documentation that doesn’t explicitly document it. This allows you to write documentation that isn’t adorned with “obvious” types, but still get that information into the output. It also lets you nice-looking references to parameters and have them be marked up appropriately in HTML output. § Heuristics The following sections list the various heuristics that YARD-Heuristics apply for determining types of parameters and return values. Note that for all heuristics, a type will only be added if none already exists. § Parameter Named “other” A parameter named “other” has the same type as the receiver. This turns class Point def ==(other) into class Point # @param [Point] other def ==(other) § Parameter Types Derived by Parameter Name Parameters to a method with names in the following table has the type listed on the same row. | Name | Type | |--------+-----------| | index | [Integer] | | object | [Object] | | range | [Range] | | string | [String] | Thus class Point def x_inside?(range) becomes class Point # @param [Range] range def x_inside?(range) § Block Parameters If the last parameter to a method’s name begins with ‘&’ it has the type [Proc]. class Method def initialize(&block) becomes class Method # @param [Block] block def initialize(&block) § Return Types by Method Name For the return type of a method with less than two ‹@return› tags, the method name is lookup up in the following table and has the type listed on the same row. For the “type” “self or type”, if a ‹@param› tag exists with the name “other”, the type of the ...

Total

Ranking: 50,967 of 180,702
Downloads: 18,743

Daily

Ranking: 20,645 of 180,689
Downloads: 31

Depended by

RankDownloadsName
22,19657,241inventory
32,80233,486lookout
34,12831,704inventory-rake
34,40431,370inventory-rake-tasks-yard
39,88225,925value
60,99214,717lookout-rake
66,62212,983ame
78,29510,261u
98,5827,103lookout-rack

Depends on

RankDownloadsName
223143,611,496yard
22,19657,241inventory
32,80233,486lookout
34,12831,704inventory-rake
60,99214,717lookout-rake

Owners

#GravatarHandle
1iconnow