README.md in rodimus-1.0.0 vs README.md in rodimus-1.1.0

- old
+ new

@@ -10,13 +10,10 @@ __Why the name?__ Rodimus Prime is one of the leaders of the Autobots, and he has a cool name. Naming a data transformation library after a Transformer increases the coolness factor. It's science. -__NOTE:__ This library is still in the earliest phases of development. Things -are prone to change suddenly and rapidly. Use at your own risk. - ## Installation Add this line to your application's Gemfile: gem 'rodimus' @@ -38,17 +35,17 @@ reading from your data source, and the last step is used to write to the new destination. In Rodimus, you create a transformation object, and then you add one or more steps to its array of steps. You typically create steps by writing -your own classes that include the Rodimus::Step mixin. When the transformation is +your own classes that inherit from Rodimus::Step. When the transformation is subsequently run, a new process is forked for each step. All processes are connected together using pipes except for the first and last steps (those being the source and destination steps). Each step then consumes rows of data from its incoming pipe and performs some operation on it before writing it to the outgoing pipe. -There are several methods on the Rodimus::Step mixin that are able to be +There are several methods on the Rodimus::Step class that are able to be overridden for custom processing behavior before, during, or after the each row is handled. If those aren't enough, you're also free to manipulate the input/output objects (i.e. to redirect to standard out). The Rodimus approach is to provide a minimal, flexible framework upon which