class Renderer
Renders conjugated french verbs. (see conjugateFR)
Public Instance Methods
description()
click to toggle source
The description of this renderer. For example: +Renders in the example format.+ @return [String] the description.
# File lib/conjugatefr/renderers.rb, line 18 def description; ""; end
post()
click to toggle source
Prints content to go after the conjugations.
# File lib/conjugatefr/renderers.rb, line 14 def post; end
pre()
click to toggle source
Prints content to go before the conjugations.
# File lib/conjugatefr/renderers.rb, line 8 def pre; end
word(name, words)
click to toggle source
Prints a verb and it’s conjugations. @param name [String] The verb. @param words [Array] An array of conjugations.
# File lib/conjugatefr/renderers.rb, line 12 def word (name, words); end