The project is called resume generator which will automatically generate a resume based on your input data and export in various formats like pdf, txt, xml, etc.
The project is located at http://xianese.unfuddle.com
Database schema has been done. Here is the diagram.
Ruby's block always make a developer like me who is being with typed language for long time confused.
In Ruby, there are some methods called Iterators like times, each, map, upto and downto and some objects called Enumerable objects like array, hash and range which contain many Iterator methods. The common feature of these methods is that they are all interacted with some custom codes.
A group of these codes for a method is called "a block".
For example:
[1,2,3].map {|x| x*x}
[1,2,3] is an Enumerable object(an Array)
"map" is an Iterator(method) which will transverse all elements in the Array
{|x| x*x} is a block provide by user for callback from "map" method
a "yield" method is provided in "map" to call block code
So, block is a group of custom codes waiting for Iterator method to call. Each time when a "yield" is met, block is called.
Here is a very simple example about an Iterator method call "twice".
When you call this iterator, it just yield twice that means the caller's block will be invoked twice.
Of course you can pass value from Iterator method to yield block.
The passing block parameter ({|y| puts y}) can be explicitly declared in the Iterator. Once it is declared, "call" method is used to invoke the block instead of "yield".
Very often we want to list a collection of data in front HTML page.
Let's say we have an animal collection. Each record of this collection contains animal Specie, Age, Weight and Risk. As you can imagine, the list is retrieved by
Now, how shuold we render the collection?
Usually we use 'for each' against the collection to render the table:
But there is a better solution with a bonus feature, a counter of records. Once you are used to this solution, you most likely will not turn back.
The solution is to use partial with :collection function and key is NAMING CONVENTION.
The collection partial is passed in by this way:
Partial's name 'animal' will be passed into partial as a varible. It represents one record in the collection. So, 'animal' can be used to reference one record in the collection.
Here is the partial:
You can also add a new column to count the rows. There is a 0 based counter avaiable in partial. By naming convention, the counter variable is called animal_counter (partial-name_counter).
Don't forget using h(...) function to sanitize your passed in variable.