module ConceptDocExporter

Export Concept to Doc file

Public Class Methods

export_all(concepts, file) click to toggle source

Export arrya of concepts to doc

# File lib/asker/exporter/concept_doc_exporter.rb, line 10
def self.export_all(concepts, file)
  concepts.each do |concept|
    file.write(ConceptDocFormatter.to_s(concept)) if concept.process
  end
end