Hi All, Looks like ETL-0.9.0 is still being developed on ActiveRecord 2.0.2 (where as the current version is 2.2.2.)
Fix 1 : So, I had to bring back my activerecord to version 2.0.2 And Added a public method :gem to Kernel module to make the following snippet of code to work with current Kernel ( where require_gem is not defined and gem is defined as a private method) unless Kernel.respond_to?(:gem) Kernel.send :alias_method, :gem, :require_gem End Fix 2: Added following lines as first line in etl.rb to make gem available as a public method. module Kernel public :gem end Thanks, Sarat
_______________________________________________ Activewarehouse-discuss mailing list Activewarehouse-discuss@rubyforge.org http://rubyforge.org/mailman/listinfo/activewarehouse-discuss