No commit activity in last 3 years
No release in over 3 years
To keep the necessity of changing data out of migrations, transformations keep track of that
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme
## Installing the Transformer ##
Add it as a hook to your existing rake tasks in Rakefile

  Rake::Task['db:schema:load'].enhance do
    Rake::Task['db:transform:load'].invoke
  end
  
  Rake::Task['db:schema:dump'].enhance do
    Rake::Task['db:transform:dump'].invoke
  end
 
  Rake::Task['db:migrate'].enhance do
    Rake::Task['db:transform'].invoke
  end


## Using the Transformer ##

It's just like migrating, moreso than you probably originally thought.

    rails g data_transformation transform_name = make the transform

    rake db:transform  = run the unrun transforms