Skip to content

Instantly share code, notes, and snippets.

@MarioCarrion
Created January 15, 2015 03:29
Show Gist options
  • Save MarioCarrion/b0fbfbda5295ff24c82d to your computer and use it in GitHub Desktop.
Save MarioCarrion/b0fbfbda5295ff24c82d to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require_relative 'builder'
v1 = Versioning::Builder.build(1)
v1.first_name = 'Mario'
v1.last_name = 'Carrion'
puts v1.columns
puts v1.values
v2 = Versioning::Builder.build(2)
v2.first_name = 'Mario'
v2.last_name = 'Carrion'
v2.age = 99 # :-)
puts v2.columns
puts v2.values
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment