class CSVRenderer

A renderer in the comma-separated value format. Output looks like:

Word,Je,Tu,Il/Elle/On,Nous,Vous,Ils/Elles
someverb,conj1,conj2,conj3,conj4,conj5,conj6

Public Class Methods

new() click to toggle source
# File lib/conjugatefr/renderers.rb, line 59
def initialize; @s = ","; end

Public Instance Methods

description() click to toggle source
# File lib/conjugatefr/renderers.rb, line 60
def description; "Renders in the Comma Separated Value (CSV) format."; end