Method: Build#update_xcode

Defined in:
lib/tasks/build.rb

#update_xcodeObject



101
102
103
104
105
106
107
108
109
110
111
112
# File 'lib/tasks/build.rb', line 101

def update_xcode
	#puts "Build scanning for xcodeproj folders" if Environment.default.debug?
    Dir.glob('**/*.xcodeproj').each{|dir|
        puts dir if Environment.default.debug?
        build_commands = XCodeBuild.get_build_commands dir
        if(!build_commands.nil?)
        	build_commands.each{|c|
    			build_commands << c
    		}
    	end
     }
end