Method: Cure::Launcher#process

Defined in:
lib/cure/launcher.rb

#process(type, obj, print_query_plan: true) ⇒ void

Deprecated.

This method returns an undefined value.

This will only support single file CSV processing, and is deprecated now

Parameters:

  • type (Symbol)
  • obj (Object)
  • print_query_plan (TrueClass, FalseClass) (defaults to: true)


35
36
37
38
# File 'lib/cure/launcher.rb', line 35

def process(type, obj, print_query_plan: true)
  @csv_files << Cure::Configuration::CsvFileProxy.load_file(type, obj, "_default")
  run_export(print_query_plan: print_query_plan)
end