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 25 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 29 def generateIntermediateFormat super end
Calls superclass method
Source
# File lib/taskjuggler/reports/ExportRE.rb, line 39 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 34 def to_tjp TjpExportRE.new(@report).to_tjp end
Return the project data in TJP syntax format.