Parent

Project

A project contains all of the information about the build.

Public Class Methods

all_projects() click to toggle source
# File lib/makeconf/project.rb, line 23
def Project.all_projects
  @@projects
end
new(options) click to toggle source
# File lib/makeconf/project.rb, line 11
def self.new(options)
  if SystemType.host =~ /-androideabi$/
     require 'makeconf/androidproject'
     object = AndroidProject.allocate
  else
     object = BaseProject.allocate
  end
  @@projects.push object
  object.send :initialize, options
  object
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.