Hi,

I am trying to create a custom transform but I am having a hard time with
dependencies.

As a simple test I just created my custom transform like this directly in my
control file:

module ETL #:nodoc:
  module Transform #:nodoc:
    class TestTransform < ETL::Transform::Transform
      def transform(name, value, row)
        # do transform
        value
      end
    end
  end
end

I'd appreciate if I could get help figuring the required dependencies to
enable the definition of a custom transform such a this in my project.

Thanks,
Colin.
_______________________________________________
Activewarehouse-discuss mailing list
Activewarehouse-discuss@rubyforge.org
http://rubyforge.org/mailman/listinfo/activewarehouse-discuss

Reply via email to