rss resume / curriculum vitae linkedin linkedin gitlab github twitter mastodon instagram
Tip: Versioning classes in Ruby
Jan 13, 2015

Versioning classes is not difficult at, specially if you’re using a modern programing language. Use Reflection together with a concrete implementation of the Builder Pattern a you’re good to go.

But why versioning classes? The reason behind class versioning is always about Backwards compatibility, where most of the times, the instance of the class actually represents data in some sort of a strict format, meaning the outputed data has to be formatted in a certain way if you want it to make sense, for example a CSV file that represents a backup of a table in a relational database.

In Ruby versioning classes is relativily simple, see the following class for example, in this case we assume we want the instances of this class to generate a CSV file (I’m ommiting proper quouting and whatnot, so this is basically to give you an idea of a real life example).

The class defines methods that allows us to indicate the class version and includes a new class method to explicitly indicate the type of the element, the length and if the value is required, similar to the well-known attr_accessor.

Subclassing that class like this:

Will allows to get an output similar to the next one:

The cool thing about this implementation is that you can keep on subclassing the most recent version and still the order of the columns will make sense. Let’s say you forgot about age, and you need a new class, you would do something like this:

And similar to the previous example, the output will be this:

Obviously I’m missing the Builder, so for example this:

Will make more sense:

In the end, all of this is useful if you have to have data in a format that is explicit, if you use a NoSQL database all of this doesn’t make sense, but still is good to know.


Back to posts