README.md in qfill-0.0.4 vs README.md in qfill-0.1.0
- old
+ new
@@ -1,6 +1,6 @@
-# Qfill - Advanced Queue Tranformations
+# Qfill - Advanced Queue Transformations
This gem takes a dynamic number of queues (arrays) of things, and manages the transformation into a new set of queues,
according to a dynamic set of guidelines.
## Installation
@@ -21,10 +21,10 @@
There will be a dynamic number of origination queues each containing a set of snapshots which are grouped together by
some matching criteria.
There is a Popper which is called to pop the next object from the next origination queue.
There is a Filter which is optionally called to validate any object that is popped from the origin.
-Origin keeps popping until an object is validated for as a result-worthy object.
+Origin keeps popping until an object is validated as a result-worthy object.
Example:
filter1 = Qfill::Filter.new( -> (object, stuff, stank) { object.is_awesome_enough_to_be_in_results?(stuff, stank) }, stuff, stank)
filter2 = Qfill::Filter.new( -> (object, rank, bank) { object.is_awesome_enough_to_be_in_results?(rank, bank) }, rank, bank)