class Xcodeproj::Project

Public Class Methods

project_shared_schemes(project_path) click to toggle source
# File lib/xcapp/project_creator.rb, line 8
def self.project_shared_schemes project_path
        schemes_path = File.join(project_path, 'xcshareddata', 'xcschemes')
        Dir[File.join(schemes_path, '*.xcscheme')].map { |scheme| Xcodeproj::XCScheme.new(scheme) }
end

Public Instance Methods

set_common_build_setting(key, value) click to toggle source
# File lib/xcapp/project_creator.rb, line 4
def set_common_build_setting key, value
        root_object.build_configuration_list.build_configurations.each { |config| config.build_settings[key] = value }
end