RubyFlow The Ruby and Rails community linklog

×

The Ruby and Rails community linklog

Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!

Ruby data processing: how to explode rows with multivalued attributes?

Here is a new Ruby ETL article in which you’ll see how to write then refactor ETL components that transform data like this:

po_number,buyers
00001,John:Mary:Sally

into this:

po_number,buyer
00001,John
00001,Mary
00001,Sally

At the end of the article you will have reusable, focused Ruby classes that you can put to work for other similar scenarios. Read more here.

Post a comment

You can use basic HTML markup (e.g. <a>) or Markdown.

As you are not logged in, you will be
directed via GitHub to signup or sign in