class HumanRenderer
A renderer in a human-readable format. Output looks like:
== someverb == someconjugation someconjugation etc...
Public Instance Methods
description()
click to toggle source
# File lib/conjugatefr/renderers.rb, line 34 def description; "Renders in a nice, human-readable format."; end
word(name, words)
click to toggle source
# File lib/conjugatefr/renderers.rb, line 28 def word (name, words) puts "\n == #{name} == " words.each do |val| puts val end end