Compare projects
Project comparisons allow you to view any selection of projects side by side just like they're shown on regular categories or in search results. You can try out an example or start yourself by adding a library to the comparison via the input below. You can also easily share your current comparison with others by sending the URL of the current page.
0.0
== ABOUT
A simple program and library to conjugate french verbs.
Parses responses to requests to an online reference site.
=== Executable
ConjugateFR comes with the executable binary +conjugatefr+.
To view information about it's supported arguments, run
conjugatefr --help
=== Custom Renderers
To make a custom renderer, just type
require conjugatefr/renderer
and then make a class that extends +Renderer+.
An example is as follows:
require 'conjugatefr/renderer'
class ExampleRenderer < Renderer
def pre
puts "This goes before the words."
end
def word (name, words)
print "#{name}:"
words.each do |word|
print " #{word}"
end
end
def post
puts "This goes after the words."
end
def description; "Renders an example format."; end
end
# Add to the Renderers list (For CLI and other programs that use it.)
$renderers["Example"] = ExampleRenderer.new
To try this out, save it as +erend.rb+ and then run:
conjugatefr -R ./erend.rb -r Example
It will produce the output:
This goes before the words.
someword: someconjugation etc etc
... (more words will be here)
This goes after the words.
=== The Library
The library can be included with +require conjugatefr+. It includes the
+ConjugateFR+ class.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Activity