class TaskJuggler::ExportRE
This specialization of ReportBase
implements an export of the project data in the TJP syntax format.
Public Class Methods
Source
# File lib/taskjuggler/reports/ExportRE.rb, line 26 def initialize(report) super(report) end
Create a new object and set some default values.
Calls superclass method
Public Instance Methods
Source
# File lib/taskjuggler/reports/ExportRE.rb, line 30 def generateIntermediateFormat super end
Calls superclass method
Source
# File lib/taskjuggler/reports/ExportRE.rb, line 40 def to_mspxml MspXmlRE.new(@report).to_mspxml end
Return the project data in Microsoft Project
XML format.
Source
# File lib/taskjuggler/reports/ExportRE.rb, line 35 def to_tjp TjpExportRE.new(@report).to_tjp end
Return the project data in TJP syntax format.