module Xcodeproj::Project::Object

This is the namespace in which all the classes that wrap the objects in a Xcode project reside.

The base class from which all classes inherit is AbstractObject.

If you need to deal with these classes directly, it’s possible to include this namespace into yours, making it unnecessary to prefix them with Xcodeproj::Project::Object.

@example

class SourceFileSorter
  include Xcodeproj::Project::Object
end