Object
A project contains all of the information about the build.
# File lib/makeconf/project.rb, line 23 def Project.all_projects @@projects end
# 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
Generated with the Darkfish Rdoc Generator 2.