module OutputFileExporter

Export Output data:

Public Class Methods

export(data, project) click to toggle source
# File lib/asker/exporter/output_file_exporter.rb, line 11
def self.export(data, project)
  ConceptAIGiftExporter.export_all(data[:concepts_ai], project)
  # UNDER DEVELOPMENT
  CodeGiftExporter.export_all(data[:codes_ai], project.get(:outputfile))
  ConceptAIYAMLExporter.export_all(data[:concepts_ai], project)
  ConceptDocExporter.export_all(data[:concepts], project.get(:lessonfile))
end