class TaskJuggler::ExportRE

This specialization of ReportBase implements an export of the project data in the TJP syntax format.

Public Class Methods

new(report) click to toggle source

Create a new object and set some default values.

Calls superclass method
# File lib/taskjuggler/reports/ExportRE.rb, line 25
def initialize(report)
  super(report)
end

Public Instance Methods

generateIntermediateFormat() click to toggle source
Calls superclass method
# File lib/taskjuggler/reports/ExportRE.rb, line 29
def generateIntermediateFormat
  super
end
to_mspxml() click to toggle source

Return the project data in Microsoft Project XML format.

# File lib/taskjuggler/reports/ExportRE.rb, line 39
def to_mspxml
  MspXmlRE.new(@report).to_mspxml
end
to_tjp() click to toggle source

Return the project data in TJP syntax format.

# File lib/taskjuggler/reports/ExportRE.rb, line 34
def to_tjp
  TjpExportRE.new(@report).to_tjp
end