Skip to content

Instantly share code, notes, and snippets.

@alloy
Last active August 18, 2017 07:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save alloy/da3dafe36872c0cd9e8e to your computer and use it in GitHub Desktop.
Save alloy/da3dafe36872c0cd9e8e to your computer and use it in GitHub Desktop.
require 'fiddle'
module CoreFoundation
CFTypeRef = Fiddle::TYPE_VOIDP
CFTypeRefPointer = Fiddle::TYPE_VOIDP
SInt32Pointer = Fiddle::TYPE_VOIDP
UInt8Pointer = Fiddle::TYPE_VOIDP
CFIndex = Fiddle::TYPE_LONG
CFTypeID = -Fiddle::TYPE_LONG
CFPropertyListMutabilityOptions = Fiddle::TYPE_INT
KCFPropertyListImmutable = 0
UInt32 = -Fiddle::TYPE_INT
UInt8 = -Fiddle::TYPE_CHAR
CFStringEncoding = UInt32
KCFStringEncodingUTF8 = 0x08000100
Boolean = Fiddle::TYPE_CHAR
TRUE = 1
FALSE = 0
FunctionPointer = Fiddle::TYPE_VOIDP
def self.image
@image ||= Fiddle.dlopen('/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation')
end
def self.show(ref)
function = Fiddle::Function.new(
image['CFShow'],
[CFTypeRef],
Fiddle::TYPE_VOID
)
function.call(ref)
end
# C Ruby's free() function
def self.free_function
Fiddle::Function.new(Fiddle::RUBY_FREE, [Fiddle::TYPE_VOIDP], Fiddle::TYPE_VOID)
end
def self.CFRelease_function
Fiddle::Function.new(image['CFRelease'], [CFTypeRef], Fiddle::TYPE_VOID)
end
# Made up function that assigns `CFRelease` as the function that should be
# used to free the memory once Ruby's GC deems the object out of scope.
def self.CFAutoRelease(ref)
ref.free = CFRelease_function() unless ref.null?
ref
end
def self.CFURLCreateFromFileSystemRepresentation(path)
function = Fiddle::Function.new(
image['CFURLCreateFromFileSystemRepresentation'],
[CFTypeRef, UInt8Pointer, CFIndex, Boolean],
CFTypeRef
)
CFAutoRelease(function.call(Fiddle::NULL, path, path.size, FALSE))
end
# NOTE: Has been deprecated since 10.9
def self.CFURLCreateDataAndPropertiesFromResource(url)
function = Fiddle::Function.new(
image['CFURLCreateDataAndPropertiesFromResource'],
[CFTypeRef, CFTypeRef, CFTypeRefPointer, CFTypeRefPointer, CFTypeRef, SInt32Pointer],
Boolean
)
data_ptr = Fiddle::Pointer.malloc(Fiddle::SIZEOF_INTPTR_T, free_function)
error_code_ptr = Fiddle::Pointer.malloc(Fiddle::SIZEOF_INT, free_function)
success = function.call(Fiddle::NULL, url, data_ptr, Fiddle::NULL, Fiddle::NULL, error_code_ptr)
if success == TRUE
CFAutoRelease(data_ptr.ptr)
else
raise "Unable to read data. Error: #{error_code_ptr[0]}"
end
end
# NOTE: Will be deprecated soon
def self.CFPropertyListCreateFromXMLData(data)
function = Fiddle::Function.new(
image['CFPropertyListCreateFromXMLData'],
[CFTypeRef, CFTypeRef, CFPropertyListMutabilityOptions, CFTypeRefPointer],
CFTypeRef
)
error_string_ptr = Fiddle::Pointer.malloc(Fiddle::SIZEOF_INTPTR_T, free_function)
plist = CFAutoRelease(function.call(Fiddle::NULL, data, KCFPropertyListImmutable, error_string_ptr))
error_string = CFAutoRelease(error_string_ptr.ptr)
unless error_string.null?
show(error_string)
raise "Unable to read plist data!"
end
plist
end
def self.CFDictionaryApplyFunction(dictionary, &callback)
raise "Callback block required!" if callback.nil?
param_types = [CFTypeRef, CFTypeRef, Fiddle::TYPE_VOIDP]
callback_closure = Fiddle::Closure::BlockCaller.new(Fiddle::TYPE_VOID, param_types, &callback)
callback_function = Fiddle::Function.new(callback_closure, param_types, Fiddle::TYPE_VOID)
function = Fiddle::Function.new(
image['CFDictionaryApplyFunction'],
[CFTypeRef, FunctionPointer, Fiddle::TYPE_VOIDP],
Fiddle::TYPE_VOID
)
function.call(dictionary, callback_function, Fiddle::NULL)
end
def self.CFGetTypeID(ref)
function = Fiddle::Function.new(
image['CFGetTypeID'],
[CFTypeRef],
CFTypeID
)
function.call(ref)
end
def self.CFDictionaryGetTypeID()
function = Fiddle::Function.new(
image['CFDictionaryGetTypeID'],
[],
CFTypeID
)
function.call
end
def self.CFStringGetTypeID()
function = Fiddle::Function.new(
image['CFStringGetTypeID'],
[],
CFTypeID
)
function.call
end
def self.CFStringCreateExternalRepresentation(string)
function = Fiddle::Function.new(
image['CFStringCreateExternalRepresentation'],
[CFTypeRef, CFTypeRef, CFStringEncoding, UInt8],
CFTypeRef
)
CFAutoRelease(function.call(Fiddle::NULL, string, KCFStringEncodingUTF8, 0))
end
def self.CFDataGetLength(data)
function = Fiddle::Function.new(
image['CFDataGetLength'],
[CFTypeRef],
CFIndex
)
function.call(data)
end
def self.CFDataGetBytePtr(data)
function = Fiddle::Function.new(
image['CFDataGetBytePtr'],
[CFTypeRef],
Fiddle::TYPE_VOIDP
)
function.call(data)
end
# CFTypeRef to Ruby conversions
def self.CFStringToRubyString(string)
data = CFStringCreateExternalRepresentation(string)
if data.null?
raise "Unable to convert string!"
end
bytes_ptr = CFDataGetBytePtr(data)
bytes_ptr.to_str(CFDataGetLength(data))
end
def self.CFDictionaryToRubyHash(dictionary)
result = {}
CFDictionaryApplyFunction(dictionary) do |key, value|
key = CFStringToRubyString(key)
case CFGetTypeID(value)
when CFStringGetTypeID()
result[key] = CFStringToRubyString(value)
when CFDictionaryGetTypeID()
result[key] = CFDictionaryToRubyHash(value)
else
puts 'UNKNOWN'
end
end
result
end
end
module Xcodeproj
def self.read_plist(path)
url = CoreFoundation.CFURLCreateFromFileSystemRepresentation(path)
data = CoreFoundation.CFURLCreateDataAndPropertiesFromResource(url)
plist = CoreFoundation.CFPropertyListCreateFromXMLData(data)
unless CoreFoundation.CFGetTypeID(plist) == CoreFoundation.CFDictionaryGetTypeID()
raise "Expected a plist with a dictionary root object!"
end
result = CoreFoundation.CFDictionaryToRubyHash(plist)
p result
end
end
Xcodeproj.read_plist(File.expand_path('spec/fixtures/Sample Project/Cocoa Application.xcodeproj/project.pbxproj'))
~/C/C/Xcodeproj [master] » ruby plist.rb
UNKNOWN
[SNIP]
UNKNOWN
{"classes"=>{},
"objectVersion"=>"45",
"archiveVersion"=>"1",
"objects"=>
{"E550D7C716371B9000A003E9"=>
{"path"=>"System/Library/Frameworks/Automator.framework",
"isa"=>"PBXFileReference",
"name"=>"Automator.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E550D72116371B4400A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"plugin",
"COMBINE_HIDPI_IMAGES"=>"YES",
"LIBRARY_STYLE"=>"BUNDLE",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"ImageUnitPlugIn/ImageUnitPlugIn-Info.plist",
"INSTALL_PATH"=>"$(HOME)/Library/Graphics/Image Units",
"GCC_PREFIX_HEADER"=>"ImageUnitPlugIn/ImageUnitPlugIn-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E525242216245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523D016245A910012E2BA"},
"E52523B416245A910012E2BA"=>
{"path"=>"Library/Frameworks/SenTestingKit.framework",
"isa"=>"PBXFileReference",
"name"=>"SenTestingKit.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"DEVELOPER_DIR"},
"806F6FD317EFAF47001051EE"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"CLANG_WARN_ENUM_CONVERSION"=>"YES",
"DSTROOT"=>"/tmp/iOS_staticLibrary.dst",
"GCC_WARN_ABOUT_RETURN_TYPE"=>"YES_ERROR",
"CLANG_ENABLE_MODULES"=>"YES",
"CLANG_WARN_INT_CONVERSION"=>"YES",
"GCC_PREFIX_HEADER"=>"iOS staticLibrary/iOS staticLibrary-Prefix.pch",
"CLANG_WARN_CONSTANT_CONVERSION"=>"YES",
"OTHER_LDFLAGS"=>"-ObjC",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"SDKROOT"=>"iphoneos",
"GCC_WARN_UNUSED_FUNCTION"=>"YES",
"CLANG_WARN_BOOL_CONVERSION"=>"YES",
"CLANG_WARN_DIRECT_OBJC_ISA_USAGE"=>"YES_ERROR",
"PRODUCT_NAME"=>"$(TARGET_NAME)",
"IPHONEOS_DEPLOYMENT_TARGET"=>"7.0",
"CLANG_WARN_OBJC_ROOT_CLASS"=>"YES_ERROR",
"SKIP_INSTALL"=>"YES",
"ARCHS"=>"$(ARCHS_STANDARD_INCLUDING_64_BIT)",
"GCC_WARN_UNDECLARED_SELECTOR"=>"YES"},
"name"=>"Debug"},
"E550D8EF16371C1800A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D86916371BE100A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525241116245AB20012E2BA"=>
{"path"=>"iOS_application.xcdatamodeld",
"isa"=>"XCVersionGroup",
"currentVersion"=>"E525241216245AB20012E2BA",
"versionGroupType"=>"wrapper.xcdatamodel",
"sourceTree"=>"<group>"},
"E550D81116371BAF00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239016245A900012E2BA"},
"E525243C16245AE10012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525243B16245AE10012E2BA"},
"E52523D716245A910012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523D516245A910012E2BA"},
"E550D8DE16371C1800A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CE16245A910012E2BA"},
"E550D7EF16371BA500A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"806F6FD017EFAF47001051EE"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"806F6FCE17EFAF47001051EE"},
"E550D8A716371C0F00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523D016245A910012E2BA"},
"E550D6D716371B3300A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CC16245A910012E2BA"},
"E550D79716371B7100A003E9"=>
{"path"=>"System/Library/Frameworks/ScreenSaver.framework",
"isa"=>"PBXFileReference",
"name"=>"ScreenSaver.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E525238F16245A900012E2BA"=>
{"isa"=>"PBXGroup", "name"=>"Frameworks", "sourceTree"=>"<group>"},
"E52523B116245A910012E2BA"=>
{"buildActionMask"=>"2147483647",
"shellPath"=>"/bin/sh",
"showEnvVarsInLog"=>"0",
"isa"=>"PBXShellScriptBuildPhase",
"runOnlyForDeploymentPostprocessing"=>"0",
"shellScript"=>
"# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n"},
"E550D85616371BD600A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D7D916371B9000A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"action",
"GCC_ENABLE_OBJC_GC"=>"supported",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"AutomatorAction/AutomatorAction-Info.plist",
"OTHER_OSAFLAGS"=>"-x -t 0 -c 0",
"INSTALL_PATH"=>"$(HOME)/Library/Automator",
"GCC_PREFIX_HEADER"=>"AutomatorAction/AutomatorAction-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E525243416245AB20012E2BA"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D88716371C0600A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239016245A900012E2BA"},
"E52523C616245A910012E2BA"=>
{"path"=>"Cocoa ApplicationImporter.mdimporter",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E52523F816245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523D016245A910012E2BA"},
"E550D8DB16371C1800A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E550D8D816371C1800A003E9"},
"E550D7C816371B9000A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E550D7C716371B9000A003E9"},
"E550D79416371B7100A003E9"=>
{"buildConfigurationList"=>"E550D7A316371B7100A003E9",
"productReference"=>"E550D79516371B7100A003E9",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"ScreenSaver",
"isa"=>"PBXNativeTarget",
"name"=>"ScreenSaver"},
"E525242316245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CE16245A910012E2BA"},
"E550D83C16371BCA00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239016245A900012E2BA"},
"E550D73616371B5A00A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523E916245A910012E2BA"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E52523C316245A910012E2BA"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D8AF16371C1000A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E525242016245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523B416245A910012E2BA"},
"E550D81216371BAF00A003E9"=>
{"path"=>"System/Library/Frameworks/Quartz.framework",
"isa"=>"PBXFileReference",
"name"=>"Quartz.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E52523D816245A910012E2BA"=>
{"path"=>"main.c",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.c",
"sourceTree"=>"<group>"},
"E52523B216245A910012E2BA"=>
{"buildConfigurationList"=>"E52523E916245A910012E2BA",
"productReference"=>"E52523B316245A910012E2BA",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"Cocoa ApplicationTests",
"isa"=>"PBXNativeTarget",
"name"=>"Cocoa ApplicationTests"},
"806F6FD117EFAF47001051EE"=>
{"path"=>"iOS_staticLibraryTests.m",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.objc",
"sourceTree"=>"<group>"},
"E550D83416371BC500A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E5FBB2D116357C16009E96B0"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E5FBB2D016357C16009E96B0"},
"E550D88816371C0600A003E9"=>
{"path"=>"System/Library/Frameworks/AppleScriptObjC.framework",
"isa"=>"PBXFileReference",
"name"=>"AppleScriptObjC.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E550D8DC16371C1800A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CA16245A910012E2BA"},
"E52523D516245A910012E2BA"=>
{"isa"=>"PBXVariantGroup",
"name"=>"InfoPlist.strings",
"sourceTree"=>"<group>"},
"E550D6D516371B3300A003E9"=>
{"buildConfigurationList"=>"E550D6E516371B3300A003E9",
"productReference"=>"E550D6D616371B3300A003E9",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"PlugIn",
"isa"=>"PBXNativeTarget",
"name"=>"PlugIn"},
"E550D8A516371C0F00A003E9"=>
{"path"=>"CommandLineTool",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"compiled.mach-o.executable",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D79516371B7100A003E9"=>
{"path"=>"ScreenSaver.saver",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D7D716371B9000A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E525238D16245A900012E2BA"=>
{"isa"=>"PBXGroup", "name"=>"Products", "sourceTree"=>"<group>"},
"E525243216245AB20012E2BA"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"VALIDATE_PRODUCT"=>"YES",
"WRAPPER_EXTENSION"=>"octest",
"IPHONEOS_DEPLOYMENT_TARGET"=>"6.0",
"TEST_HOST"=>"$(BUNDLE_LOADER)",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>
"iOS applicationTests/iOS applicationTests-Info.plist",
"SDKROOT"=>"iphoneos",
"BUNDLE_LOADER"=>
"$(BUILT_PRODUCTS_DIR)/iOS application.app/iOS application",
"GCC_PREFIX_HEADER"=>"iOS application/iOS application-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E550D88516371C0600A003E9"=>
{"path"=>"CocoaAppleScriptApp.app",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.application",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E52523C416245A910012E2BA"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523F616245AB20012E2BA"=>
{"path"=>"Library/Frameworks/UIKit.framework",
"isa"=>"PBXFileReference",
"name"=>"UIKit.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"DEVELOPER_DIR"},
"E550D72016371B4400A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"plugin",
"COMBINE_HIDPI_IMAGES"=>"YES",
"LIBRARY_STYLE"=>"BUNDLE",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"ImageUnitPlugIn/ImageUnitPlugIn-Info.plist",
"INSTALL_PATH"=>"$(HOME)/Library/Graphics/Image Units",
"GCC_PREFIX_HEADER"=>"ImageUnitPlugIn/ImageUnitPlugIn-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E550D79216371B7100A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525242116245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523F616245AB20012E2BA"},
"806F6FDC17EFB0E7001051EE"=>
{"isa"=>"PBXTargetDependency",
"target"=>"E52523F316245AB20012E2BA",
"targetProxy"=>"806F6FDB17EFB0E7001051EE"},
"E550D83A16371BCA00A003E9"=>
{"buildConfigurationList"=>"E550D84316371BCA00A003E9",
"productReference"=>"E550D83B16371BCA00A003E9",
"productType"=>"com.apple.product-type.library.dynamic",
"productName"=>"Library",
"isa"=>"PBXNativeTarget",
"name"=>"Library"},
"E550D84816371BD000A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D82116371BAF00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"plugin",
"GCC_ENABLE_OBJC_GC"=>"supported",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>
"QuartzComposerPlugIn/QuartzComposerPlugIn-Info.plist",
"INSTALL_PATH"=>"$(HOME)/Library/Graphics/Quartz Composer Plug-Ins",
"GCC_PREFIX_HEADER"=>
"QuartzComposerPlugIn/QuartzComposerPlugIn-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E52523E716245A910012E2BA"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"CODE_SIGN_IDENTITY"=>"Mac Developer",
"WRAPPER_EXTENSION"=>"app",
"CODE_SIGN_ENTITLEMENTS"=>
"Cocoa Application/Cocoa Application.entitlements",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"Cocoa Application/Cocoa Application-Info.plist",
"GCC_PREFIX_HEADER"=>"Cocoa Application/Cocoa Application-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E52523C116245A910012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523C016245A910012E2BA"},
"E52523F316245AB20012E2BA"=>
{"buildConfigurationList"=>"E525243316245AB20012E2BA",
"productReference"=>"E52523F416245AB20012E2BA",
"productType"=>"com.apple.product-type.application",
"productName"=>"iOS application",
"isa"=>"PBXNativeTarget",
"name"=>"iOS application"},
"E550D86816371BE100A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525239F16245A900012E2BA"=>
{"isa"=>"PBXVariantGroup", "name"=>"Credits.rtf", "sourceTree"=>"<group>"},
"E550D83516371BC500A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"framework",
"COMBINE_HIDPI_IMAGES"=>"YES",
"FRAMEWORK_VERSION"=>"A",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"CocoaFramework/CocoaFramework-Info.plist",
"DYLIB_CURRENT_VERSION"=>"1",
"DYLIB_COMPATIBILITY_VERSION"=>"1",
"GCC_PREFIX_HEADER"=>"CocoaFramework/CocoaFramework-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E550D81016371BAF00A003E9"=>
{"path"=>"QuartzComposerPlugIn.plugin",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D75716371B5A00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"prefPane",
"GCC_ENABLE_OBJC_GC"=>"required",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"MacRubyPrefPanel/MacRubyPrefPanel-Info.plist",
"INSTALL_PATH"=>"$(HOME)/Library/PreferencePanes",
"GCC_PREFIX_HEADER"=>"MacRubyPrefPanel/MacRubyPrefPanel-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E52523D616245A910012E2BA"=>
{"path"=>"en.lproj/InfoPlist.strings",
"isa"=>"PBXFileReference",
"name"=>"en",
"lastKnownFileType"=>"text.plist.strings",
"sourceTree"=>"<group>"},
"E550D87416371BEE00A003E9"=>
{"path"=>"STL C++ Library.dylib",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"compiled.mach-o.dylib",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E52523B016245A910012E2BA"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D6D616371B3300A003E9"=>
{"path"=>"PlugIn.bundle",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D7EE16371BA500A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D7D816371B9000A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"action",
"GCC_ENABLE_OBJC_GC"=>"supported",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"AutomatorAction/AutomatorAction-Info.plist",
"OTHER_OSAFLAGS"=>"-x -t 0 -c 0",
"INSTALL_PATH"=>"$(HOME)/Library/Automator",
"GCC_PREFIX_HEADER"=>"AutomatorAction/AutomatorAction-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E525243316245AB20012E2BA"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E52523D316245A910012E2BA"=>
{"isa"=>"PBXGroup", "name"=>"Supporting Files", "sourceTree"=>"<group>"},
"806F6FB917EFAF46001051EE"=>
{"isa"=>"PBXGroup", "name"=>"Supporting Files", "sourceTree"=>"<group>"},
"E525243F16245B1D0012E2BA"=>
{"buildActionMask"=>"2147483647",
"shellPath"=>"/bin/sh",
"isa"=>"PBXShellScriptBuildPhase",
"runOnlyForDeploymentPostprocessing"=>"0",
"shellScript"=>""},
"E550D6D316371B3300A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D8A316371C0F00A003E9"=>
{"isa"=>"PBXCopyFilesBuildPhase",
"buildActionMask"=>"2147483647",
"dstPath"=>"/usr/share/man/man1/",
"dstSubfolderSpec"=>"0",
"runOnlyForDeploymentPostprocessing"=>"1"},
"E550D79316371B7100A003E9"=>
{"isa"=>"PBXRezBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D8DA16371C1800A003E9"=>
{"isa"=>"PBXTargetDependency",
"target"=>"E550D8D716371C1800A003E9",
"targetProxy"=>"E550D8D916371C1800A003E9"},
"E525238B16245A900012E2BA"=>
{"buildConfigurationList"=>"E52523E616245A910012E2BA",
"productReference"=>"E525238C16245A900012E2BA",
"productType"=>"com.apple.product-type.application",
"productName"=>"Cocoa Application",
"isa"=>"PBXNativeTarget",
"name"=>"Cocoa Application"},
"E550D84916371BD000A003E9"=>
{"buildConfigurationList"=>"E550D85316371BD000A003E9",
"productReference"=>"E550D84A16371BD000A003E9",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"Bundle",
"isa"=>"PBXNativeTarget",
"name"=>"Bundle"},
"E550D83B16371BCA00A003E9"=>
{"path"=>"Library.dylib",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"compiled.mach-o.dylib",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E525243016245AB20012E2BA"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"VALIDATE_PRODUCT"=>"YES",
"WRAPPER_EXTENSION"=>"app",
"OTHER_CFLAGS"=>"-DNS_BLOCK_ASSERTIONS=1",
"IPHONEOS_DEPLOYMENT_TARGET"=>"6.0",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"iOS application/iOS application-Info.plist",
"SDKROOT"=>"iphoneos",
"CODE_SIGN_IDENTITY[sdk=iphoneos*]"=>"iPhone Developer",
"GCC_PREFIX_HEADER"=>"iOS application/iOS application-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E550D82216371BAF00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"plugin",
"GCC_ENABLE_OBJC_GC"=>"supported",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>
"QuartzComposerPlugIn/QuartzComposerPlugIn-Info.plist",
"INSTALL_PATH"=>"$(HOME)/Library/Graphics/Quartz Composer Plug-Ins",
"GCC_PREFIX_HEADER"=>
"QuartzComposerPlugIn/QuartzComposerPlugIn-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E52523E816245A910012E2BA"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"CODE_SIGN_IDENTITY"=>"Mac Developer",
"WRAPPER_EXTENSION"=>"app",
"CODE_SIGN_ENTITLEMENTS"=>
"Cocoa Application/Cocoa Application.entitlements",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"Cocoa Application/Cocoa Application-Info.plist",
"GCC_PREFIX_HEADER"=>"Cocoa Application/Cocoa Application-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E550D88316371C0600A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523C216245A910012E2BA"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523F416245AB20012E2BA"=>
{"path"=>"iOS application.app",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.application",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D83616371BC500A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"framework",
"COMBINE_HIDPI_IMAGES"=>"YES",
"FRAMEWORK_VERSION"=>"A",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"CocoaFramework/CocoaFramework-Info.plist",
"DYLIB_CURRENT_VERSION"=>"1",
"DYLIB_COMPATIBILITY_VERSION"=>"1",
"GCC_PREFIX_HEADER"=>"CocoaFramework/CocoaFramework-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E550D79016371B7100A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D84616371BD000A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D89E16371C0700A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D75816371B6300A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523E516245A910012E2BA"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"PRODUCT_NAME"=>"$(TARGET_NAME)",
"WRAPPER_EXTENSION"=>"mdimporter",
"COMBINE_HIDPI_IMAGES"=>"YES",
"LIBRARY_STYLE"=>"BUNDLE",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>
"Cocoa ApplicationImporter/Cocoa ApplicationImporter-Info.plist",
"SKIP_INSTALL"=>"YES",
"INSTALL_PATH"=>"@executable_path/../Contents/Library/Spotlight",
"GCC_PREFIX_HEADER"=>
"Cocoa ApplicationImporter/Cocoa ApplicationImporter-Prefix.pch",
"ALWAYS_SEARCH_USER_PATHS"=>"YES"},
"name"=>"Release"},
"E550D6E516371B3300A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E52523F116245AB20012E2BA"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525239D16245A900012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239C16245A900012E2BA"},
"E5FBB2D016357C16009E96B0"=>
{"path"=>"../sample.xcconfig",
"isa"=>"PBXFileReference",
"sourceTree"=>"<group>",
"name"=>"sample.xcconfig",
"fileEncoding"=>"4",
"lastKnownFileType"=>"text.xcconfig"},
"E550D80916371BA500A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"bundle",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"InstallerPlugIn/InstallerPlugIn-Info.plist",
"INSTALL_PATH"=>"$(HOME)/Library/Bundles",
"GCC_PREFIX_HEADER"=>"InstallerPlugIn/InstallerPlugIn-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E550D75516371B5A00A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E52523D416245A910012E2BA"=>
{"path"=>"Cocoa ApplicationImporter-Info.plist",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"text.plist.xml",
"sourceTree"=>"<group>"},
"E550D87216371BEE00A003E9"=>
{"isa"=>"PBXHeadersBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D6D416371B3300A003E9"=>
{"isa"=>"PBXHeadersBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D8A416371C0F00A003E9"=>
{"buildConfigurationList"=>"E550D8AF16371C1000A003E9",
"productReference"=>"E550D8A516371C0F00A003E9",
"productType"=>"com.apple.product-type.tool",
"productName"=>"CommandLineTool",
"isa"=>"PBXNativeTarget",
"name"=>"CommandLineTool"},
"E525238C16245A900012E2BA"=>
{"path"=>"Cocoa Application.app",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.application",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E525243116245AB20012E2BA"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"octest",
"IPHONEOS_DEPLOYMENT_TARGET"=>"6.0",
"TEST_HOST"=>"$(BUNDLE_LOADER)",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>
"iOS applicationTests/iOS applicationTests-Info.plist",
"SDKROOT"=>"iphoneos",
"BUNDLE_LOADER"=>
"$(BUILT_PRODUCTS_DIR)/iOS application.app/iOS application",
"GCC_PREFIX_HEADER"=>"iOS application/iOS application-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E550D88416371C0600A003E9"=>
{"buildConfigurationList"=>"E550D89E16371C0700A003E9",
"productReference"=>"E550D88516371C0600A003E9",
"productType"=>"com.apple.product-type.application",
"productName"=>"CocoaAppleScriptApp",
"isa"=>"PBXNativeTarget",
"name"=>"CocoaAppleScriptApp"},
"E52523D116245A910012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523D016245A910012E2BA"},
"806F6FB717EFAF46001051EE"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523D016245A910012E2BA"},
"E550D79116371B7100A003E9"=>
{"isa"=>"PBXHeadersBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D8A116371C0F00A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"806F6FDB17EFB0E7001051EE"=>
{"isa"=>"PBXContainerItemProxy",
"containerPortal"=>"E525238316245A900012E2BA",
"remoteGlobalIDString"=>"E52523F316245AB20012E2BA",
"remoteInfo"=>"iOS application",
"proxyType"=>"1"},
"E550D77E16371B6A00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CC16245A910012E2BA"},
"E550D84716371BD000A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D82016371BAF00A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D89F16371C0700A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"CocoaAppleScriptApp/CocoaAppleScriptApp-Info.plist",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PREFIX_HEADER"=>
"CocoaAppleScriptApp/CocoaAppleScriptApp-Prefix.pch",
"WRAPPER_EXTENSION"=>"app",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E550D75916371B6300A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523E616245A910012E2BA"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D74116371B5A00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E550D74016371B5A00A003E9"},
"E52523C016245A910012E2BA"=>
{"path"=>"Cocoa_ApplicationTests.m",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.objc",
"sourceTree"=>"<group>"},
"E550D88116371C0600A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523F216245AB20012E2BA"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D6E616371B3300A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"PlugIn/PlugIn-Info.plist",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PREFIX_HEADER"=>"PlugIn/PlugIn-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E525239E16245A900012E2BA"=>
{"path"=>"Cocoa Application-Prefix.pch",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.h",
"sourceTree"=>"<group>"},
"E550D7DE16371B9800A003E9"=>
{"path"=>"AddressBookPlugIn.bundle",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D75616371B5A00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"prefPane",
"GCC_ENABLE_OBJC_GC"=>"required",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"MacRubyPrefPanel/MacRubyPrefPanel-Info.plist",
"INSTALL_PATH"=>"$(HOME)/Library/PreferencePanes",
"GCC_PREFIX_HEADER"=>"MacRubyPrefPanel/MacRubyPrefPanel-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E5D4649B163577D2006A4730"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E5D4649A163577D2006A4730"},
"E550D87316371BEE00A003E9"=>
{"buildConfigurationList"=>"E550D87E16371BEE00A003E9",
"productReference"=>"E550D87416371BEE00A003E9",
"productType"=>"com.apple.product-type.library.dynamic",
"productName"=>"STL C++ Library",
"isa"=>"PBXNativeTarget",
"name"=>"STL C++ Library"},
"E52523E316245A910012E2BA"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D8D916371C1800A003E9"=>
{"isa"=>"PBXContainerItemProxy",
"containerPortal"=>"E525238316245A900012E2BA",
"remoteGlobalIDString"=>"E550D8D716371C1800A003E9",
"remoteInfo"=>"MacRubyApplicationImporter",
"proxyType"=>"1"},
"E525239B16245A900012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239916245A900012E2BA"},
"5138059B16499F4C001D82AD"=>
{"isa"=>"PBXContainerItemProxy",
"containerPortal"=>"E5FBB3451635ED35009E96B0",
"remoteGlobalIDString"=>"E5FBB2E41635ED34009E96B0",
"remoteInfo"=>"ReferencedProject",
"proxyType"=>"1"},
"E550D7C016371B7A00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"PRODUCT_NAME"=>"$(TARGET_NAME)",
"WRAPPER_EXTENSION"=>"mdimporter",
"COMBINE_HIDPI_IMAGES"=>"YES",
"LIBRARY_STYLE"=>"BUNDLE",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"SpotLightImporter/SpotLightImporter-Info.plist",
"SKIP_INSTALL"=>"YES",
"INSTALL_PATH"=>"@executable_path/../Contents/Library/Spotlight",
"GCC_PREFIX_HEADER"=>"SpotLightImporter/SpotLightImporter-Prefix.pch",
"ALWAYS_SEARCH_USER_PATHS"=>"YES"},
"name"=>"Release"},
"E550D6D016371B2800A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"INFOPLIST_FILE"=>"InAppPurchaseContent/ContentInfo.plist",
"INSTALL_PATH"=>"$(LOCAL_LIBRARY_DIR)/InAppPurchaseContent",
"WRAPPER_EXTENSION"=>"",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E52523D216245A910012E2BA"=>
{"path"=>"Cocoa ApplicationImporter",
"isa"=>"PBXGroup",
"sourceTree"=>"<group>"},
"806F6FB817EFAF46001051EE"=>
{"path"=>"iOS staticLibrary", "isa"=>"PBXGroup", "sourceTree"=>"<group>"},
"E550D87016371BEE00A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D6D216371B3300A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D8A216371C0F00A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525238A16245A900012E2BA"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D88216371C0600A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D6E716371B3300A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"PlugIn/PlugIn-Info.plist",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PREFIX_HEADER"=>"PlugIn/PlugIn-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"806F6FB517EFAF46001051EE"=>
{"buildConfigurationList"=>"806F6FD917EFAF47001051EE",
"productReference"=>"806F6FB617EFAF46001051EE",
"productType"=>"com.apple.product-type.library.static",
"productName"=>"iOS staticLibrary",
"isa"=>"PBXNativeTarget",
"name"=>"iOS staticLibrary"},
"E550D7DF16371B9800A003E9"=>
{"path"=>"System/Library/Frameworks/AddressBook.framework",
"isa"=>"PBXFileReference",
"name"=>"AddressBook.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E550D77C16371B6A00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E550D70316371B4400A003E9"},
"E52523E416245A910012E2BA"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"PRODUCT_NAME"=>"$(TARGET_NAME)",
"WRAPPER_EXTENSION"=>"mdimporter",
"COMBINE_HIDPI_IMAGES"=>"YES",
"LIBRARY_STYLE"=>"BUNDLE",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>
"Cocoa ApplicationImporter/Cocoa ApplicationImporter-Info.plist",
"SKIP_INSTALL"=>"YES",
"INSTALL_PATH"=>"@executable_path/../Contents/Library/Spotlight",
"GCC_PREFIX_HEADER"=>
"Cocoa ApplicationImporter/Cocoa ApplicationImporter-Prefix.pch",
"ALWAYS_SEARCH_USER_PATHS"=>"YES"},
"name"=>"Debug"},
"E52523F016245AB20012E2BA"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525239C16245A900012E2BA"=>
{"path"=>"main.m",
"isa"=>"PBXFileReference",
"sourceTree"=>"<group>",
"lastKnownFileType"=>"sourcecode.c.objc",
"comments"=>"I must comment a lot!"},
"E550D7DC16371B9800A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"5138059C16499F4C001D82AD"=>
{"isa"=>"PBXTargetDependency",
"name"=>"ReferencedProject",
"targetProxy"=>"5138059B16499F4C001D82AD"},
"E525240E16245AB20012E2BA"=>
{"isa"=>"PBXVariantGroup",
"name"=>"MainStoryboard.storyboard",
"sourceTree"=>"<group>"},
"E550D6D116371B2800A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"INFOPLIST_FILE"=>"InAppPurchaseContent/ContentInfo.plist",
"INSTALL_PATH"=>"$(LOCAL_LIBRARY_DIR)/InAppPurchaseContent",
"WRAPPER_EXTENSION"=>"",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E550D80816371BA500A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D87116371BEE00A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"806F6FBF17EFAF47001051EE"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523E116245A910012E2BA"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"GCC_WARN_ABOUT_RETURN_TYPE"=>"YES",
"ONLY_ACTIVE_ARCH"=>"YES",
"GCC_SYMBOLS_PRIVATE_EXTERN"=>"NO",
"GCC_WARN_UNINITIALIZED_AUTOS"=>"YES",
"CLANG_CXX_LANGUAGE_STANDARD"=>"gnu++0x",
"MACOSX_DEPLOYMENT_TARGET"=>"10.8",
"GCC_OPTIMIZATION_LEVEL"=>"0",
"GCC_C_LANGUAGE_STANDARD"=>"gnu99",
"CLANG_WARN__DUPLICATE_METHOD_MATCH"=>"YES",
"CLANG_WARN_EMPTY_BODY"=>"YES",
"GCC_WARN_64_TO_32_BIT_CONVERSION"=>"YES",
"ALWAYS_SEARCH_USER_PATHS"=>"NO",
"COPY_PHASE_STRIP"=>"NO",
"CLANG_ENABLE_OBJC_ARC"=>"YES",
"SDKROOT"=>"macosx",
"IPHONEOS_DEPLOYMENT_TARGET"=>"6.0",
"GCC_DYNAMIC_NO_PIC"=>"NO",
"ARCHS"=>"$(ARCHS_STANDARD_64_BIT)",
"GCC_ENABLE_OBJC_EXCEPTIONS"=>"YES",
"CLANG_CXX_LIBRARY"=>"libc++",
"GCC_WARN_UNUSED_VARIABLE"=>"YES"},
"name"=>"Debug"},
"E552E0F716263967003ED1FE"=>
{"script"=>"test\n",
"isEditable"=>"1",
"isa"=>"PBXBuildRule",
"filePatterns"=>"*.css",
"fileType"=>"pattern.proxy",
"compilerSpec"=>"com.apple.compilers.proxy.script"},
"E550D78E16371B6A00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"qlgenerator",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"QuickLook/QuickLook-Info.plist",
"INSTALL_PATH"=>"/Library/QuickLook",
"GCC_PREFIX_HEADER"=>"QuickLook/QuickLook-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E550D8D716371C1800A003E9"=>
{"buildConfigurationList"=>"E550D8EF16371C1800A003E9",
"productReference"=>"E550D8D816371C1800A003E9",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"MacRubyApplicationImporter",
"isa"=>"PBXNativeTarget",
"name"=>"MacRubyApplicationImporter"},
"E550D83816371BCA00A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"806F6FB617EFAF46001051EE"=>
{"path"=>"libiOS staticLibrary.a",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"archive.ar",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E52523D016245A910012E2BA"=>
{"path"=>"System/Library/Frameworks/Foundation.framework",
"isa"=>"PBXFileReference",
"name"=>"Foundation.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E5DCFBDC16285431002C6803"=>
{"buildActionMask"=>"2147483647",
"shellPath"=>"/bin/sh",
"isa"=>"PBXShellScriptBuildPhase",
"runOnlyForDeploymentPostprocessing"=>"0",
"shellScript"=>"",
"name"=>"Custom name"},
"E550D77D16371B6A00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CA16245A910012E2BA"},
"E550D71F16371B4400A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E5D46498163577B5006A4730"=>
{"path"=>"Cocoa Application/Relative_to_group",
"isa"=>"PBXFileReference",
"sourceTree"=>"<group>",
"name"=>"Relative_to_group",
"fileEncoding"=>"4",
"lastKnownFileType"=>"text"},
"E550D85416371BD000A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"bundle",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"Bundle/Bundle-Info.plist",
"INSTALL_PATH"=>"$(LOCAL_LIBRARY_DIR)/Bundles",
"GCC_PREFIX_HEADER"=>"Bundle/Bundle-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E550D74016371B5A00A003E9"=>
{"path"=>"Library/Frameworks/MacRuby.framework",
"isa"=>"PBXFileReference",
"name"=>"MacRuby.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"DEVELOPER_DIR"},
"E550D6BA16371B1A00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523B416245A910012E2BA"},
"806F6FB317EFAF46001051EE"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D7DD16371B9800A003E9"=>
{"buildConfigurationList"=>"E550D7EB16371B9800A003E9",
"productReference"=>"E550D7DE16371B9800A003E9",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"AddressBookPlugIn",
"isa"=>"PBXNativeTarget",
"name"=>"AddressBookPlugIn"},
"E550D77A16371B6A00A003E9"=>
{"path"=>"System/Library/Frameworks/QuickLook.framework",
"isa"=>"PBXFileReference",
"name"=>"QuickLook.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E525240F16245AB20012E2BA"=>
{"path"=>"en.lproj/MainStoryboard.storyboard",
"isa"=>"PBXFileReference",
"name"=>"en",
"lastKnownFileType"=>"file.storyboard",
"sourceTree"=>"<group>"},
"E550D72816371B4E00A003E9"=>
{"path"=>"IOKitDriver.kext",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E5D4649A163577D2006A4730"=>
{"path"=>
"/Users/fabio/Documents/GitHub/CP/Xcodeproj/spec/fixtures/Sample Project/Cocoa Application/Absolute_path",
"isa"=>"PBXFileReference",
"sourceTree"=>"<absolute>",
"name"=>"Absolute_path",
"fileEncoding"=>"4",
"lastKnownFileType"=>"text"},
"E550D80F16371BAF00A003E9"=>
{"buildConfigurationList"=>"E550D82016371BAF00A003E9",
"productReference"=>"E550D81016371BAF00A003E9",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"QuartzComposerPlugIn",
"isa"=>"PBXNativeTarget",
"name"=>"QuartzComposerPlugIn"},
"E52523E216245A910012E2BA"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"CLANG_CXX_LIBRARY"=>"libc++",
"DEBUG_INFORMATION_FORMAT"=>"dwarf-with-dsym",
"GCC_WARN_UNUSED_VARIABLE"=>"YES",
"GCC_C_LANGUAGE_STANDARD"=>"gnu99",
"GCC_ENABLE_OBJC_EXCEPTIONS"=>"YES",
"GCC_WARN_UNINITIALIZED_AUTOS"=>"YES",
"MACOSX_DEPLOYMENT_TARGET"=>"10.8",
"CLANG_WARN__DUPLICATE_METHOD_MATCH"=>"YES",
"CLANG_CXX_LANGUAGE_STANDARD"=>"gnu++0x",
"CLANG_WARN_EMPTY_BODY"=>"YES",
"GCC_WARN_64_TO_32_BIT_CONVERSION"=>"YES",
"ALWAYS_SEARCH_USER_PATHS"=>"NO",
"ARCHS"=>"$(ARCHS_STANDARD_64_BIT)",
"SDKROOT"=>"macosx",
"GCC_WARN_ABOUT_RETURN_TYPE"=>"YES",
"IPHONEOS_DEPLOYMENT_TARGET"=>"6.0",
"CLANG_ENABLE_OBJC_ARC"=>"YES",
"COPY_PHASE_STRIP"=>"YES"},
"name"=>"Release"},
"E550D88016371BEE00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>{"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E52523AF16245A910012E2BA"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"806F6FCE17EFAF47001051EE"=>
{"isa"=>"PBXVariantGroup",
"name"=>"InfoPlist.strings",
"sourceTree"=>"<group>"},
"E550D8D816371C1800A003E9"=>
{"path"=>"MacRubyApplicationImporter.mdimporter",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E525239A16245A900012E2BA"=>
{"path"=>"en.lproj/InfoPlist.strings",
"isa"=>"PBXFileReference",
"name"=>"en",
"lastKnownFileType"=>"text.plist.strings",
"sourceTree"=>"<group>"},
"E550D7DA16371B9800A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525240C16245AB20012E2BA"=>
{"path"=>"Default-568h@2x.png",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"image.png",
"sourceTree"=>"<group>"},
"E5D464A016357816006A4730"=>
{"path"=>
"../../../../../../../../Documents/GitHub/CP/Xcodeproj/spec/fixtures/Sample Project/Cocoa Application/Relative_to_build_products",
"isa"=>"PBXFileReference",
"sourceTree"=>"BUILT_PRODUCTS_DIR",
"name"=>"Relative_to_build_products",
"fileEncoding"=>"4",
"lastKnownFileType"=>"text"},
"E550D83916371BCA00A003E9"=>
{"isa"=>"PBXHeadersBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525238916245A900012E2BA"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E5D46499163577B5006A4730"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E5D46498163577B5006A4730"},
"E550D8BB16371C1700A003E9"=>
{"isa"=>"PBXContainerItemProxy",
"containerPortal"=>"E525238316245A900012E2BA",
"remoteGlobalIDString"=>"E550D8B516371C1700A003E9",
"remoteInfo"=>"MacRubyApplication",
"proxyType"=>"1"},
"E550D78C16371B6A00A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D8D516371C1800A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D85516371BD000A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"bundle",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"Bundle/Bundle-Info.plist",
"INSTALL_PATH"=>"$(LOCAL_LIBRARY_DIR)/Bundles",
"GCC_PREFIX_HEADER"=>"Bundle/Bundle-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E550D6BB16371B1A00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239016245A900012E2BA"},
"806F6FB417EFAF46001051EE"=>
{"isa"=>"PBXCopyFilesBuildPhase",
"buildActionMask"=>"2147483647",
"dstPath"=>"include/$(PRODUCT_NAME)",
"dstSubfolderSpec"=>"16",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523A316245A900012E2BA"=>
{"path"=>"CPDocument.m",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.objc",
"sourceTree"=>"<group>"},
"E550D77B16371B6A00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E550D77A16371B6A00A003E9"},
"E550D7EC16371B9800A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"bundle",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"AddressBookPlugIn/AddressBookPlugIn-Info.plist",
"INSTALL_PATH"=>"$(HOME)/Developer/Palettes",
"GCC_PREFIX_HEADER"=>"AddressBookPlugIn/AddressBookPlugIn-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E5FBB3501635ED36009E96B0"=>
{"path"=>"ReferencedProjectImporter.mdimporter",
"isa"=>"PBXReferenceProxy",
"fileType"=>"wrapper.cfbundle",
"remoteRef"=>"E5FBB34F1635ED36009E96B0",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E525241E16245AB20012E2BA"=>
{"buildConfigurationList"=>"E525243416245AB20012E2BA",
"productReference"=>"E525241F16245AB20012E2BA",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"iOS applicationTests",
"isa"=>"PBXNativeTarget",
"name"=>"iOS applicationTests"},
"E550D6EF16371B3B00A003E9"=>
{"path"=>"System/Library/Frameworks/Kernel.framework",
"isa"=>"PBXFileReference",
"name"=>"Kernel.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"806F6FCF17EFAF47001051EE"=>
{"path"=>"en.lproj/InfoPlist.strings",
"isa"=>"PBXFileReference",
"name"=>"en",
"lastKnownFileType"=>"text.plist.strings",
"sourceTree"=>"<group>"},
"E550D7DB16371B9800A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525240D16245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525240C16245AB20012E2BA"},
"E5D464A116357816006A4730"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E5D464A016357816006A4730"},
"E550D8F8163733DE00A003E9"=>
{"isa"=>"PBXCopyFilesBuildPhase",
"buildActionMask"=>"2147483647",
"dstPath"=>"",
"dstSubfolderSpec"=>"7",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D72616371B4E00A003E9"=>
{"isa"=>"PBXRezBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D80D16371BAF00A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523E016245A910012E2BA"=>
{"path"=>"Cocoa ApplicationImporter-Prefix.pch",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.h",
"sourceTree"=>"<group>"},
"E52523A716245A900012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523A516245A900012E2BA"},
"E52523AD16245A910012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523AB16245A910012E2BA"},
"806F6FCC17EFAF47001051EE"=>
{"isa"=>"PBXGroup", "name"=>"Supporting Files", "sourceTree"=>"<group>"},
"E550D8BC16371C1700A003E9"=>
{"isa"=>"PBXTargetDependency",
"target"=>"E550D8B516371C1700A003E9",
"targetProxy"=>"E550D8BB16371C1700A003E9"},
"E550D78D16371B6A00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"qlgenerator",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"QuickLook/QuickLook-Info.plist",
"INSTALL_PATH"=>"/Library/QuickLook",
"GCC_PREFIX_HEADER"=>"QuickLook/QuickLook-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E550D8D616371C1800A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D82916371BC400A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239016245A900012E2BA"},
"E525240A16245AB20012E2BA"=>
{"path"=>"Default@2x.png",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"image.png",
"sourceTree"=>"<group>"},
"E550D83716371BCA00A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523A416245A900012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523A316245A900012E2BA"},
"E550D7ED16371B9800A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"bundle",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"AddressBookPlugIn/AddressBookPlugIn-Info.plist",
"INSTALL_PATH"=>"$(HOME)/Developer/Palettes",
"GCC_PREFIX_HEADER"=>"AddressBookPlugIn/AddressBookPlugIn-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E525241F16245AB20012E2BA"=>
{"path"=>"iOS applicationTests.octest",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D6AE16371AFC00A003E9"=>
{"isa"=>"PBXContainerItemProxy",
"containerPortal"=>"E525238316245A900012E2BA",
"remoteGlobalIDString"=>"E52523B216245A910012E2BA",
"remoteInfo"=>"Cocoa ApplicationTests",
"proxyType"=>"1"},
"E550D85316371BD000A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E52523BF16245A910012E2BA"=>
{"path"=>"Cocoa_ApplicationTests.h",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.h",
"sourceTree"=>"<group>"},
"806F6FB217EFAF46001051EE"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523A116245A900012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239F16245A900012E2BA"},
"E550D72716371B4E00A003E9"=>
{"buildConfigurationList"=>"E550D73316371B4E00A003E9",
"productReference"=>"E550D72816371B4E00A003E9",
"productType"=>"com.apple.product-type.kernel-extension",
"productName"=>"IOKitDriver",
"isa"=>"PBXNativeTarget",
"name"=>"IOKitDriver"},
"E550D80E16371BAF00A003E9"=>
{"buildActionMask"=>"2147483647",
"shellPath"=>"/bin/sh",
"isa"=>"PBXShellScriptBuildPhase",
"runOnlyForDeploymentPostprocessing"=>"0",
"shellScript"=>
"# This shell script simply copies the built plug-in to \"~/Library/Graphics/Quartz Composer Plug-Ins\" and overrides any previous version at that location\n\nmkdir -p \"$USER_LIBRARY_DIR/Graphics/Quartz Composer Plug-Ins\"\nrm -rf \"$USER_LIBRARY_DIR/Graphics/Quartz Composer Plug-Ins/QuartzComposerPlugIn.plugin\"\ncp -rf \"$BUILT_PRODUCTS_DIR/QuartzComposerPlugIn.plugin\" \"$USER_LIBRARY_DIR/Graphics/Quartz Composer Plug-Ins/\"\n"},
"E525241C16245AB20012E2BA"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525239916245A900012E2BA"=>
{"isa"=>"PBXVariantGroup",
"name"=>"InfoPlist.strings",
"sourceTree"=>"<group>"},
"E550D6ED16371B3B00A003E9"=>
{"buildConfigurationList"=>"E550D6F916371B3B00A003E9",
"productReference"=>"E550D6EE16371B3B00A003E9",
"productType"=>"com.apple.product-type.kernel-extension",
"productName"=>"KernelExtension",
"isa"=>"PBXNativeTarget",
"name"=>"KernelExtension"},
"E52523AE16245A910012E2BA"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"806F6FCD17EFAF47001051EE"=>
{"path"=>"iOS staticLibraryTests-Info.plist",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"text.plist.xml",
"sourceTree"=>"<group>"},
"E525240B16245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525240A16245AB20012E2BA"},
"E525238816245A900012E2BA"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D72416371B4E00A003E9"=>
{"isa"=>"PBXHeadersBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D80B16371BAF00A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523A516245A900012E2BA"=>
{"isa"=>"PBXVariantGroup",
"name"=>"CPDocument.xib",
"sourceTree"=>"<group>"},
"E52523AB16245A910012E2BA"=>
{"currentVersion"=>"E52523AC16245A910012E2BA",
"sourceTree"=>"<group>",
"isa"=>"XCVersionGroup",
"path"=>"Cocoa Application/CPDocument.xcdatamodeld",
"versionGroupType"=>"wrapper.xcdatamodel",
"name"=>"CPDocument.xcdatamodeld"},
"806F6FCA17EFAF47001051EE"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"806F6FB617EFAF46001051EE"},
"E550D8BA16371C1700A003E9"=>
{"buildConfigurationList"=>"E550D8F516371C1800A003E9",
"buildArgumentsString"=>"--compile --embed",
"productName"=>"Deployment",
"isa"=>"PBXLegacyTarget",
"passBuildSettingsInEnvironment"=>"1",
"buildToolPath"=>"/usr/local/bin/macruby_deploy",
"name"=>"Deployment"},
"E550D6AF16371AFC00A003E9"=>
{"isa"=>"PBXTargetDependency",
"target"=>"E52523B216245A910012E2BA",
"targetProxy"=>"E550D6AE16371AFC00A003E9"},
"E550D8D416371C1800A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D82716371BC400A003E9"=>
{"buildConfigurationList"=>"E550D83416371BC500A003E9",
"productReference"=>"E550D82816371BC400A003E9",
"productType"=>"com.apple.product-type.framework",
"productName"=>"CocoaFramework",
"isa"=>"PBXNativeTarget",
"name"=>"CocoaFramework"},
"E525242E16245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525242D16245AB20012E2BA"},
"E550D7AE16371B7A00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523D016245A910012E2BA"},
"E5D464B316357954006A4730"=>
{"path"=>"Version_identifier.xcdatamodel",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"wrapper.xcdatamodel",
"sourceTree"=>"<group>"},
"E52523A216245A900012E2BA"=>
{"path"=>"CPDocument.h",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.h",
"sourceTree"=>"<group>"},
"E550D7EB16371B9800A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D86716371BD700A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"PRODUCT_NAME"=>"org.cocoapods.$(TARGET_NAME:rfc1034identifier)",
"WRAPPER_EXTENSION"=>"xpc",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"XPCServic/XPCServic-Info.plist",
"GCC_PREFIX_HEADER"=>"XPCServic/XPCServic-Prefix.pch",
"MACH_O_TYPE"=>"mh_execute"},
"name"=>"Release"},
"E525241D16245AB20012E2BA"=>
{"buildActionMask"=>"2147483647",
"shellPath"=>"/bin/sh",
"isa"=>"PBXShellScriptBuildPhase",
"runOnlyForDeploymentPostprocessing"=>"0",
"shellScript"=>
"# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n"},
"E550D8F716371C1800A003E9"=>
{"isa"=>"XCBuildConfiguration", "buildSettings"=>{}, "name"=>"Release"},
"E550D6EE16371B3B00A003E9"=>
{"path"=>"KernelExtension.kext",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D8A016371C0700A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"CocoaAppleScriptApp/CocoaAppleScriptApp-Info.plist",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PREFIX_HEADER"=>
"CocoaAppleScriptApp/CocoaAppleScriptApp-Prefix.pch",
"WRAPPER_EXTENSION"=>"app",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E550D7AB16371B7A00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CA16245A910012E2BA"},
"E52523BD16245A910012E2BA"=>
{"path"=>"en.lproj/InfoPlist.strings",
"isa"=>"PBXFileReference",
"name"=>"en",
"lastKnownFileType"=>"text.plist.strings",
"sourceTree"=>"<group>"},
"E550D72516371B4E00A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D80C16371BAF00A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525239716245A900012E2BA"=>
{"isa"=>"PBXGroup", "name"=>"Supporting Files", "sourceTree"=>"<group>"},
"E525241A16245AB20012E2BA"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D6EB16371B3B00A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523AC16245A910012E2BA"=>
{"path"=>"CPDocument.xcdatamodel",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"wrapper.xcdatamodel",
"sourceTree"=>"<group>"},
"E550D76016371B6300A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E550D73E16371B5A00A003E9"},
"806F6FCB17EFAF47001051EE"=>
{"path"=>"iOS staticLibraryTests",
"isa"=>"PBXGroup",
"sourceTree"=>"<group>"},
"E5D464A216357833006A4730"=>
{"path"=>"Cocoa Application/Relative_to_SDK",
"isa"=>"PBXFileReference",
"sourceTree"=>"<group>",
"name"=>"Relative_to_SDK",
"fileEncoding"=>"4",
"lastKnownFileType"=>"text"},
"E550D82816371BC400A003E9"=>
{"path"=>"CocoaFramework.framework",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.framework",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D7C616371B8F00A003E9"=>
{"path"=>"AutomatorAction.action",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E525242F16245AB20012E2BA"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"app",
"IPHONEOS_DEPLOYMENT_TARGET"=>"6.0",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"iOS application/iOS application-Info.plist",
"SDKROOT"=>"iphoneos",
"CODE_SIGN_IDENTITY[sdk=iphoneos*]"=>"iPhone Developer",
"GCC_PREFIX_HEADER"=>"iOS application/iOS application-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E525238616245A900012E2BA"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D72216371B4E00A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E5D464B416357954006A4730"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E5D464B216357954006A4730"},
"E52523CF16245A910012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CE16245A910012E2BA"},
"E550D84416371BCA00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"DYLIB_CURRENT_VERSION"=>"1",
"DYLIB_COMPATIBILITY_VERSION"=>"1",
"GCC_PREFIX_HEADER"=>"Library/Library-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E550D78F16371B7100A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D6B816371B1A00A003E9"=>
{"buildConfigurationList"=>"E550D6C616371B1A00A003E9",
"productReference"=>"E550D6B916371B1A00A003E9",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"UnitTestingBundle",
"isa"=>"PBXNativeTarget",
"name"=>"UnitTestingBundle"},
"E5D464B0163578C7006A4730"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E5D464AE163578C7006A4730"},
"E550D82516371BC400A003E9"=>
{"isa"=>"PBXHeadersBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525242C16245AB20012E2BA"=>
{"path"=>"iOS_applicationTests.h",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.h",
"sourceTree"=>"<group>"},
"E550D7AC16371B7A00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CC16245A910012E2BA"},
"E525238316245A900012E2BA"=>
{"buildConfigurationList"=>"E525238616245A900012E2BA",
"developmentRegion"=>"English",
"isa"=>"PBXProject",
"compatibilityVersion"=>"Xcode 3.1",
"productRefGroup"=>"E525238D16245A900012E2BA",
"projectDirPath"=>"",
"attributes"=>
{"LastUpgradeCheck"=>"0510",
"ORGANIZATIONNAME"=>"CocoaPods",
"TargetAttributes"=>
{"806F6FC217EFAF47001051EE"=>
{"TestTargetID"=>"E525238B16245A900012E2BA"}},
"CLASSPREFIX"=>"CP"},
"hasScannedForEncodings"=>"0",
"mainGroup"=>"E525238116245A900012E2BA",
"projectRoot"=>""},
"E550D73F16371B5A00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E550D73E16371B5A00A003E9"},
"E52523BE16245A910012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523BC16245A910012E2BA"},
"E550D77816371B6A00A003E9"=>
{"buildConfigurationList"=>"E550D78C16371B6A00A003E9",
"productReference"=>"E550D77916371B6A00A003E9",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"QuickLook",
"isa"=>"PBXNativeTarget",
"name"=>"QuickLook"},
"E550D6B316371B0600A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"OTHER_CFLAGS"=>"",
"PRODUCT_NAME"=>"$(TARGET_NAME)",
"OTHER_LDFLAGS"=>""},
"name"=>"Release"},
"E550D77216371B6300A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"prefPane",
"GCC_ENABLE_OBJC_GC"=>"supported",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"PreferencePanel/PreferencePanel-Info.plist",
"INSTALL_PATH"=>"$(HOME)/Library/PreferencePanes",
"GCC_PREFIX_HEADER"=>"PreferencePanel/PreferencePanel-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E52523A016245A900012E2BA"=>
{"path"=>"en.lproj/Credits.rtf",
"isa"=>"PBXFileReference",
"name"=>"en",
"lastKnownFileType"=>"text.rtf",
"sourceTree"=>"<group>"},
"E550D86516371BD700A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E525241B16245AB20012E2BA"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525239816245A900012E2BA"=>
{"path"=>"Cocoa Application-Info.plist",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"text.plist.xml",
"sourceTree"=>"<group>"},
"E550D73416371B4E00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"GCC_VERSION"=>"com.apple.compilers.llvmgcc42",
"MODULE_NAME"=>"org.cocoapods.IOKitDriver",
"PRODUCT_NAME"=>"$(TARGET_NAME)",
"COMBINE_HIDPI_IMAGES"=>"YES",
"WRAPPER_EXTENSION"=>"kext",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"IOKitDriver/IOKitDriver-Info.plist",
"MODULE_VERSION"=>"1.0.0d1",
"CURRENT_PROJECT_VERSION"=>"1.0.0d1",
"GCC_PREFIX_HEADER"=>"IOKitDriver/IOKitDriver-Prefix.pch"},
"name"=>"Debug"},
"E550D8F516371C1800A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D6EC16371B3B00A003E9"=>
{"isa"=>"PBXRezBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E5D464A316357833006A4730"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E5D464A216357833006A4730"},
"E52523BB16245A910012E2BA"=>
{"path"=>"Cocoa ApplicationTests-Info.plist",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"text.plist.xml",
"sourceTree"=>"<group>"},
"806F6FDA17EFAF47001051EE"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D7F516371BA500A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E550D7F416371BA500A003E9"},
"E550D72316371B4E00A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D7BE16371B7A00A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E525239516245A900012E2BA"=>
{"path"=>"System/Library/Frameworks/Foundation.framework",
"isa"=>"PBXFileReference",
"name"=>"Foundation.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E552E0F916263968003ED1FE"=>
{"isa"=>"PBXBuildRule",
"fileType"=>"wrapper.xcclassmodel",
"isEditable"=>"1",
"compilerSpec"=>"com.apple.build-tasks.copy-strings-file"},
"E550D84516371BCA00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"DYLIB_CURRENT_VERSION"=>"1",
"DYLIB_COMPATIBILITY_VERSION"=>"1",
"GCC_PREFIX_HEADER"=>"Library/Library-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E52523AA16245A910012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523A816245A910012E2BA"},
"E550D6B916371B1A00A003E9"=>
{"path"=>"UnitTestingBundle.octest",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D82616371BC400A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D7C416371B8F00A003E9"=>
{"buildActionMask"=>"2147483647",
"shellPath"=>"/bin/sh",
"isa"=>"PBXShellScriptBuildPhase",
"runOnlyForDeploymentPostprocessing"=>"0",
"shellScript"=>"amlint \"${BUILT_PRODUCTS_DIR}/${FULL_PRODUCT_NAME}\""},
"E525242D16245AB20012E2BA"=>
{"path"=>"iOS_applicationTests.m",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.objc",
"sourceTree"=>"<group>"},
"E550D7AD16371B7A00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CE16245A910012E2BA"},
"E550D77916371B6A00A003E9"=>
{"path"=>"QuickLook.qlgenerator",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D6FE16371B4400A003E9"=>
{"isa"=>"PBXHeadersBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523CD16245A910012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CC16245A910012E2BA"},
"E5D464B516357987006A4730"=>
{"path"=>
"/Users/fabio/Documents/GitHub/CP/Xcodeproj/spec/fixtures/Sample Project/Cocoa Application",
"isa"=>"PBXGroup",
"name"=>"Absolute_path",
"sourceTree"=>"<absolute>"},
"E52523FF16245AB20012E2BA"=>
{"isa"=>"PBXVariantGroup",
"name"=>"InfoPlist.strings",
"sourceTree"=>"<group>"},
"E5D464B216357954006A4730"=>
{"path"=>"Version_identifier.xcdatamodeld",
"isa"=>"XCVersionGroup",
"currentVersion"=>"E5D464B316357954006A4730",
"versionGroupType"=>"wrapper.xcdatamodel",
"sourceTree"=>"<group>"},
"E550D6B616371B1A00A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D86616371BD700A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"PRODUCT_NAME"=>"org.cocoapods.$(TARGET_NAME:rfc1034identifier)",
"WRAPPER_EXTENSION"=>"xpc",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"XPCServic/XPCServic-Info.plist",
"GCC_PREFIX_HEADER"=>"XPCServic/XPCServic-Prefix.pch",
"MACH_O_TYPE"=>"mh_execute"},
"name"=>"Debug"},
"E550D8F616371C1800A003E9"=>
{"isa"=>"XCBuildConfiguration", "buildSettings"=>{}, "name"=>"Debug"},
"E550D73516371B4E00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"GCC_VERSION"=>"com.apple.compilers.llvmgcc42",
"MODULE_NAME"=>"org.cocoapods.IOKitDriver",
"PRODUCT_NAME"=>"$(TARGET_NAME)",
"COMBINE_HIDPI_IMAGES"=>"YES",
"WRAPPER_EXTENSION"=>"kext",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"IOKitDriver/IOKitDriver-Info.plist",
"MODULE_VERSION"=>"1.0.0d1",
"CURRENT_PROJECT_VERSION"=>"1.0.0d1",
"GCC_PREFIX_HEADER"=>"IOKitDriver/IOKitDriver-Prefix.pch"},
"name"=>"Release"},
"E550D82316371BC400A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525242A16245AB20012E2BA"=>
{"path"=>"en.lproj/InfoPlist.strings",
"isa"=>"PBXFileReference",
"name"=>"en",
"lastKnownFileType"=>"text.plist.strings",
"sourceTree"=>"<group>"},
"E550D7AA16371B7A00A003E9"=>
{"path"=>"SpotLightImporter.mdimporter",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E525238116245A900012E2BA"=>
{"usesTabs"=>"0", "isa"=>"PBXGroup", "sourceTree"=>"<group>"},
"E550D77616371B6A00A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D73D16371B5A00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239016245A900012E2BA"},
"E52523BC16245A910012E2BA"=>
{"isa"=>"PBXVariantGroup",
"name"=>"InfoPlist.strings",
"sourceTree"=>"<group>"},
"E550D6FB16371B3B00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"MODULE_VERSION"=>"1.0.0d1",
"INFOPLIST_FILE"=>"KernelExtension/KernelExtension-Info.plist",
"INSTALL_PATH"=>"$(SYSTEM_LIBRARY_DIR)/Extensions",
"MODULE_START"=>"KernelExtension_start",
"MODULE_STOP"=>"KernelExtension_stop",
"WRAPPER_EXTENSION"=>"kext",
"MODULE_NAME"=>"org.cocoapods.KernelExtension",
"GCC_VERSION"=>"com.apple.compilers.llvmgcc42",
"PRODUCT_NAME"=>"$(TARGET_NAME)",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PREFIX_HEADER"=>"KernelExtension/KernelExtension-Prefix.pch"},
"name"=>"Release"},
"E550D6B116371B0600A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D77016371B6300A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D8F316371C1800A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"app",
"GCC_ENABLE_OBJC_GC"=>"required",
"ARCHS"=>"x86_64",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"MacRubyApplication/MacRubyApplication-Info.plist",
"GCC_PREFIX_HEADER"=>"MacRubyApplication/MacRubyApplication-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E5FBB3461635ED35009E96B0"=>
{"isa"=>"PBXGroup", "name"=>"Products", "sourceTree"=>"<group>"},
"E525239616245A900012E2BA"=>
{"path"=>"Cocoa Application", "isa"=>"PBXGroup", "sourceTree"=>"<group>"},
"E550D7BF16371B7A00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"PRODUCT_NAME"=>"$(TARGET_NAME)",
"WRAPPER_EXTENSION"=>"mdimporter",
"COMBINE_HIDPI_IMAGES"=>"YES",
"LIBRARY_STYLE"=>"BUNDLE",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"SpotLightImporter/SpotLightImporter-Info.plist",
"SKIP_INSTALL"=>"YES",
"INSTALL_PATH"=>"@executable_path/../Contents/Library/Spotlight",
"GCC_PREFIX_HEADER"=>"SpotLightImporter/SpotLightImporter-Prefix.pch",
"ALWAYS_SEARCH_USER_PATHS"=>"YES"},
"name"=>"Debug"},
"E550D6CF16371B2800A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D6EA16371B3B00A003E9"=>
{"isa"=>"PBXHeadersBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D70716371B4400A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E550D70616371B4400A003E9"},
"E525240816245AB20012E2BA"=>
{"path"=>"Default.png",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"image.png",
"sourceTree"=>"<group>"},
"E52523DF16245A910012E2BA"=>
{"path"=>"Importer Read Me.txt",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"text",
"sourceTree"=>"<group>"},
"E525244016245B230012E2BA"=>
{"isa"=>"PBXHeadersBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D7C516371B8F00A003E9"=>
{"buildConfigurationList"=>"E550D7D716371B9000A003E9",
"productReference"=>"E550D7C616371B8F00A003E9",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"AutomatorAction",
"isa"=>"PBXNativeTarget",
"name"=>"AutomatorAction"},
"E5D464AA16357867006A4730"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E5D464A916357867006A4730"},
"E550D6C816371B1A00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"octest",
"COMBINE_HIDPI_IMAGES"=>"YES",
"FRAMEWORK_SEARCH_PATHS"=>"\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"UnitTestingBundle/UnitTestingBundle-Info.plist",
"GCC_PREFIX_HEADER"=>"UnitTestingBundle/UnitTestingBundle-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E550D7F316371BA500A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239016245A900012E2BA"},
"E525239316245A900012E2BA"=>
{"path"=>"System/Library/Frameworks/AppKit.framework",
"isa"=>"PBXFileReference",
"name"=>"AppKit.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E550D6FF16371B4400A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523CE16245A910012E2BA"=>
{"path"=>"System/Library/Frameworks/CoreData.framework",
"isa"=>"PBXFileReference",
"name"=>"CoreData.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E550D84316371BCA00A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D6B716371B1A00A003E9"=>
{"buildActionMask"=>"2147483647",
"shellPath"=>"/bin/sh",
"isa"=>"PBXShellScriptBuildPhase",
"runOnlyForDeploymentPostprocessing"=>"0",
"shellScript"=>
"# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n"},
"E550D85B16371BD600A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523D016245A910012E2BA"},
"E550D82416371BC400A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D7C216371B8F00A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525242B16245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525242916245AB20012E2BA"},
"E5D464B1163578DB006A4730"=>
{"usesTabs"=>"1",
"indentWidth"=>"4",
"sourceTree"=>"<group>",
"isa"=>"PBXGroup",
"tabWidth"=>"4",
"path"=>"Cocoa Application",
"wrapsLines"=>"1",
"name"=>"Text_settings"},
"E550D77716371B6A00A003E9"=>
{"isa"=>"PBXRezBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D73E16371B5A00A003E9"=>
{"path"=>"System/Library/Frameworks/PreferencePanes.framework",
"isa"=>"PBXFileReference",
"name"=>"PreferencePanes.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E550D77116371B6300A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"prefPane",
"GCC_ENABLE_OBJC_GC"=>"supported",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"PreferencePanel/PreferencePanel-Info.plist",
"INSTALL_PATH"=>"$(HOME)/Library/PreferencePanes",
"GCC_PREFIX_HEADER"=>"PreferencePanel/PreferencePanel-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E550D6B216371B0600A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"OTHER_LDFLAGS"=>"",
"OTHER_CFLAGS"=>"",
"PRODUCT_NAME"=>"$(TARGET_NAME)",
"GCC_OPTIMIZATION_LEVEL"=>"0",
"GCC_GENERATE_DEBUGGING_SYMBOLS"=>"YES",
"DEBUGGING_SYMBOLS"=>"YES"},
"name"=>"Debug"},
"E550D6FC16371B4400A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523CB16245A910012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CA16245A910012E2BA"},
"E52523FD16245AB20012E2BA"=>
{"isa"=>"PBXGroup", "name"=>"Supporting Files", "sourceTree"=>"<group>"},
"E550D6B416371B1A00A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E5DCFBDB16285429002C6803"=>
{"buildActionMask"=>"2147483647",
"dstSubfolderSpec"=>"7",
"isa"=>"PBXCopyFilesBuildPhase",
"runOnlyForDeploymentPostprocessing"=>"0",
"dstPath"=>"",
"name"=>"Custom name copy"},
"E550D8F416371C1800A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"app",
"GCC_ENABLE_OBJC_GC"=>"required",
"ARCHS"=>"x86_64",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"MacRubyApplication/MacRubyApplication-Info.plist",
"GCC_PREFIX_HEADER"=>"MacRubyApplication/MacRubyApplication-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E550D73316371B4E00A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D70816371B4400A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CC16245A910012E2BA"},
"E550D77416371B6A00A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525240916245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525240816245AB20012E2BA"},
"E550D73B16371B5A00A003E9"=>
{"buildConfigurationList"=>"E550D75516371B5A00A003E9",
"productReference"=>"E550D73C16371B5A00A003E9",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"MacRubyPrefPanel",
"isa"=>"PBXNativeTarget",
"name"=>"MacRubyPrefPanel"},
"E52523BA16245A910012E2BA"=>
{"isa"=>"PBXGroup", "name"=>"Supporting Files", "sourceTree"=>"<group>"},
"E550D87E16371BEE00A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D7F416371BA500A003E9"=>
{"path"=>"System/Library/Frameworks/InstallerPlugins.framework",
"isa"=>"PBXFileReference",
"name"=>"InstallerPlugins.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"806F6FC817EFAF47001051EE"=>
{"isa"=>"PBXContainerItemProxy",
"containerPortal"=>"E525238316245A900012E2BA",
"remoteGlobalIDString"=>"806F6FB517EFAF46001051EE",
"remoteInfo"=>"iOS staticLibrary",
"proxyType"=>"1"},
"E550D8B816371C1700A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239016245A900012E2BA"},
"E550D86F16371BE100A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"PRODUCT_NAME"=>"$(TARGET_NAME)", "EXECUTABLE_PREFIX"=>"lib"},
"name"=>"Release"},
"E525239416245A900012E2BA"=>
{"path"=>"System/Library/Frameworks/CoreData.framework",
"isa"=>"PBXFileReference",
"name"=>"CoreData.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E550D8F116371C1800A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"PRODUCT_NAME"=>"$(TARGET_NAME)",
"WRAPPER_EXTENSION"=>"mdimporter",
"COMBINE_HIDPI_IMAGES"=>"YES",
"LIBRARY_STYLE"=>"BUNDLE",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>
"MacRubyApplicationImporter/MacRubyApplicationImporter-Info.plist",
"SKIP_INSTALL"=>"YES",
"INSTALL_PATH"=>"@executable_path/../Contents/Library/Spotlight",
"GCC_PREFIX_HEADER"=>
"MacRubyApplicationImporter/MacRubyApplicationImporter-Prefix.pch",
"ALWAYS_SEARCH_USER_PATHS"=>"YES"},
"name"=>"Release"},
"E550D70516371B4400A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523D016245A910012E2BA"},
"E525240616245AB20012E2BA"=>
{"path"=>"CPAppDelegate.m",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.objc",
"sourceTree"=>"<group>"},
"E52523DD16245A910012E2BA"=>
{"path"=>"MySpotlightImporter.m",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.objc",
"sourceTree"=>"<group>"},
"E550D6AD16371AF600A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>{"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E550D7C316371B8F00A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D6C616371B1A00A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D7F116371BA500A003E9"=>
{"buildConfigurationList"=>"E550D80816371BA500A003E9",
"productReference"=>"E550D7F216371BA500A003E9",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"InstallerPlugIn",
"isa"=>"PBXNativeTarget",
"name"=>"InstallerPlugIn"},
"E550D86C16371BE100A003E9"=>
{"path"=>"libC/C++ Library.dylib",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"compiled.mach-o.dylib",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E525239116245A900012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239016245A900012E2BA"},
"E550D6FD16371B4400A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523CC16245A910012E2BA"=>
{"path"=>"System/Library/Frameworks/CoreFoundation.framework",
"isa"=>"PBXFileReference",
"name"=>"CoreFoundation.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E550D6CA16371B2800A003E9"=>
{"buildConfigurationList"=>"E550D6CF16371B2800A003E9",
"productReference"=>"E550D6CB16371B2800A003E9",
"productType"=>"com.apple.product-type.in-app-purchase-content",
"productName"=>"InAppPurchaseContent",
"isa"=>"PBXNativeTarget",
"name"=>"InAppPurchaseContent"},
"E52523FE16245AB20012E2BA"=>
{"path"=>"iOS application-Info.plist",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"text.plist.xml",
"sourceTree"=>"<group>"},
"E5D464A816357841006A4730"=>
{"path"=>"Cocoa Application",
"isa"=>"PBXVariantGroup",
"name"=>"Localized",
"sourceTree"=>"<group>"},
"E550D6B516371B1A00A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E5FBB34E1635ED36009E96B0"=>
{"path"=>"ReferencedProjectTests.octest",
"isa"=>"PBXReferenceProxy",
"fileType"=>"wrapper.cfbundle",
"remoteRef"=>"E5FBB34D1635ED36009E96B0",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D77516371B6A00A003E9"=>
{"isa"=>"PBXHeadersBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D73C16371B5A00A003E9"=>
{"path"=>"MacRubyPrefPanel.prefPane",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D6FA16371B3B00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"MODULE_VERSION"=>"1.0.0d1",
"INFOPLIST_FILE"=>"KernelExtension/KernelExtension-Info.plist",
"INSTALL_PATH"=>"$(SYSTEM_LIBRARY_DIR)/Extensions",
"MODULE_START"=>"KernelExtension_start",
"MODULE_STOP"=>"KernelExtension_stop",
"WRAPPER_EXTENSION"=>"kext",
"MODULE_NAME"=>"org.cocoapods.KernelExtension",
"GCC_VERSION"=>"com.apple.compilers.llvmgcc42",
"PRODUCT_NAME"=>"$(TARGET_NAME)",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PREFIX_HEADER"=>"KernelExtension/KernelExtension-Prefix.pch"},
"name"=>"Debug"},
"E5FBB2D416357C93009E96B0"=>
{"path"=>"Base.lproj/MainMenu.xib",
"isa"=>"PBXFileReference",
"name"=>"Base",
"lastKnownFileType"=>"file.xib",
"sourceTree"=>"<group>"},
"E550D6B016371B0600A003E9"=>
{"buildWorkingDirectory"=>"Dir",
"buildConfigurationList"=>"E550D6B116371B0600A003E9",
"buildArgumentsString"=>"$(ACTION)",
"productName"=>"External",
"isa"=>"PBXLegacyTarget",
"passBuildSettingsInEnvironment"=>"1",
"buildToolPath"=>"/usr/bin/make",
"name"=>"External"},
"E525241816245AB20012E2BA"=>
{"path"=>"CPDetailViewController.m",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.objc",
"sourceTree"=>"<group>"},
"E550D87F16371BEE00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>{"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E52523FB16245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CE16245A910012E2BA"},
"806F6FC917EFAF47001051EE"=>
{"isa"=>"PBXTargetDependency",
"target"=>"806F6FB517EFAF46001051EE",
"targetProxy"=>"806F6FC817EFAF47001051EE"},
"E550D8B916371C1700A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E550D74016371B5A00A003E9"},
"E5FBB3451635ED35009E96B0"=>
{"path"=>"ReferencedProject/ReferencedProject.xcodeproj",
"isa"=>"PBXFileReference",
"name"=>"ReferencedProject.xcodeproj",
"lastKnownFileType"=>"wrapper.pb-project",
"sourceTree"=>"<group>"},
"E550D8F216371C1800A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D70616371B4400A003E9"=>
{"path"=>"System/Library/Frameworks/QuartzCore.framework",
"isa"=>"PBXFileReference",
"name"=>"QuartzCore.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E525240716245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525240616245AB20012E2BA"},
"E52523DE16245A910012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523DD16245A910012E2BA"},
"E550D8B116371C1000A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"PRODUCT_NAME"=>"$(TARGET_NAME)",
"GCC_PREFIX_HEADER"=>"CommandLineTool/CommandLineTool-Prefix.pch"},
"name"=>"Release"},
"E550D6C716371B1A00A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"octest",
"COMBINE_HIDPI_IMAGES"=>"YES",
"FRAMEWORK_SEARCH_PATHS"=>"\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"UnitTestingBundle/UnitTestingBundle-Info.plist",
"GCC_PREFIX_HEADER"=>"UnitTestingBundle/UnitTestingBundle-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E550D7F216371BA500A003E9"=>
{"path"=>"InstallerPlugIn.bundle",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E5D4649C163577E7006A4730"=>
{"path"=>"Cocoa Application/Relative_to_project",
"isa"=>"PBXFileReference",
"sourceTree"=>"SOURCE_ROOT",
"name"=>"Relative_to_project",
"fileEncoding"=>"4",
"lastKnownFileType"=>"text"},
"806F6FC617EFAF47001051EE"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523D016245A910012E2BA"},
"E550D8B616371C1700A003E9"=>
{"path"=>"MacRubyApplication.app",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.application",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D86D16371BE100A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E525239216245A900012E2BA"=>
{"isa"=>"PBXGroup", "name"=>"Other Frameworks", "sourceTree"=>"<group>"},
"E550D6CB16371B2800A003E9"=>
{"path"=>"InAppPurchaseContent",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"folder",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D70316371B4400A003E9"=>
{"path"=>"System/Library/Frameworks/ApplicationServices.framework",
"isa"=>"PBXFileReference",
"name"=>"ApplicationServices.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E525240416245AB20012E2BA"=>
{"path"=>"iOS application-Prefix.pch",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.h",
"sourceTree"=>"<group>"},
"E52523DB16245A910012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523DA16245A910012E2BA"},
"E550D6AB16371AF600A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D85A16371BD600A003E9"=>
{"path"=>"org.cocoapods.XPCServic.xpc",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E5FBB34F1635ED36009E96B0"=>
{"isa"=>"PBXContainerItemProxy",
"containerPortal"=>"E5FBB3451635ED35009E96B0",
"remoteGlobalIDString"=>"E5FBB31F1635ED35009E96B0",
"remoteInfo"=>"ReferencedProjectImporter",
"proxyType"=>"2"},
"E550D7C116371B8F00A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D86A16371BE100A003E9"=>
{"isa"=>"PBXHeadersBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E5D464AC163578AC006A4730"=>
{"path"=>"Tools_version.xcdatamodel",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"wrapper.xcdatamodel",
"sourceTree"=>"<group>"},
"E525241916245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525241816245AB20012E2BA"},
"E5D464A616357841006A4730"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E5D464A816357841006A4730"},
"E52523CA16245A910012E2BA"=>
{"path"=>"System/Library/Frameworks/CoreServices.framework",
"isa"=>"PBXFileReference",
"name"=>"CoreServices.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E52523FC16245AB20012E2BA"=>
{"path"=>"iOS application", "isa"=>"PBXGroup", "sourceTree"=>"<group>"},
"E52523B916245A910012E2BA"=>
{"path"=>"Cocoa ApplicationTests",
"isa"=>"PBXGroup",
"sourceTree"=>"<group>"},
"E5FBB34C1635ED36009E96B0"=>
{"path"=>"ReferencedProject.app",
"isa"=>"PBXReferenceProxy",
"fileType"=>"wrapper.application",
"remoteRef"=>"E5FBB34B1635ED36009E96B0",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D77316371B6A00A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D73A16371B5A00A003E9"=>
{"isa"=>"PBXRezBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525241616245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525241516245AB20012E2BA"},
"E550D8F9163733DF00A003E9"=>
{"buildActionMask"=>"2147483647",
"shellPath"=>"/bin/sh",
"isa"=>"PBXShellScriptBuildPhase",
"runOnlyForDeploymentPostprocessing"=>"0",
"shellScript"=>""},
"E5D4649D163577E7006A4730"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E5D4649C163577E7006A4730"},
"E52523A816245A910012E2BA"=>
{"isa"=>"PBXVariantGroup",
"name"=>"MainMenu.xib",
"sourceTree"=>"<group>"},
"806F6FC717EFAF47001051EE"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523F616245AB20012E2BA"},
"E550D7A416371B7100A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"saver",
"GCC_ENABLE_OBJC_GC"=>"supported",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"ScreenSaver/ScreenSaver-Info.plist",
"INSTALL_PATH"=>"$(HOME)/Library/Screen Savers",
"GCC_PREFIX_HEADER"=>"ScreenSaver/ScreenSaver-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E550D86E16371BE100A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"PRODUCT_NAME"=>"$(TARGET_NAME)", "EXECUTABLE_PREFIX"=>"lib"},
"name"=>"Debug"},
"E550D8F016371C1800A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"PRODUCT_NAME"=>"$(TARGET_NAME)",
"WRAPPER_EXTENSION"=>"mdimporter",
"COMBINE_HIDPI_IMAGES"=>"YES",
"LIBRARY_STYLE"=>"BUNDLE",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>
"MacRubyApplicationImporter/MacRubyApplicationImporter-Info.plist",
"SKIP_INSTALL"=>"YES",
"INSTALL_PATH"=>"@executable_path/../Contents/Library/Spotlight",
"GCC_PREFIX_HEADER"=>
"MacRubyApplicationImporter/MacRubyApplicationImporter-Prefix.pch",
"ALWAYS_SEARCH_USER_PATHS"=>"YES"},
"name"=>"Debug"},
"E5D4649F163577FB006A4730"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E5D4649E163577FB006A4730"},
"E550D70416371B4400A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E550D70316371B4400A003E9"},
"E525244116245B280012E2BA"=>
{"isa"=>"PBXBuildRule",
"fileType"=>"pattern.proxy",
"isEditable"=>"1",
"compilerSpec"=>"com.apple.compilers.proxy.script"},
"E525240516245AB20012E2BA"=>
{"path"=>"CPAppDelegate.h",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.h",
"sourceTree"=>"<group>"},
"E52523DC16245A910012E2BA"=>
{"path"=>"MySpotlightImporter.h",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.h",
"sourceTree"=>"<group>"},
"E550D6AC16371AF600A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>{"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E550D7F016371BA500A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"806F6FC417EFAF47001051EE"=>
{"path"=>"Library/Frameworks/XCTest.framework",
"isa"=>"PBXFileReference",
"name"=>"XCTest.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"DEVELOPER_DIR"},
"E550D86B16371BE100A003E9"=>
{"buildConfigurationList"=>"E550D86D16371BE100A003E9",
"productReference"=>"E550D86C16371BE100A003E9",
"productType"=>"com.apple.product-type.library.dynamic",
"productName"=>"C/C++ Library",
"isa"=>"PBXNativeTarget",
"name"=>"C/C++ Library"},
"E5D464AD163578AC006A4730"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E5D464AB163578AC006A4730"},
"E525239016245A900012E2BA"=>
{"path"=>"System/Library/Frameworks/Cocoa.framework",
"isa"=>"PBXFileReference",
"name"=>"Cocoa.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"SDKROOT"},
"E5D464A716357841006A4730"=>
{"path"=>"en.lproj/Localized",
"isa"=>"PBXFileReference",
"name"=>"en",
"lastKnownFileType"=>"text",
"sourceTree"=>"<group>"},
"E550D8B416371C1700A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D70116371B4400A003E9"=>
{"buildConfigurationList"=>"E550D71F16371B4400A003E9",
"productReference"=>"E550D70216371B4400A003E9",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"ImageUnitPlugIn",
"isa"=>"PBXNativeTarget",
"name"=>"ImageUnitPlugIn"},
"E525242816245AB20012E2BA"=>
{"path"=>"iOS applicationTests-Info.plist",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"text.plist.xml",
"sourceTree"=>"<group>"},
"E525240216245AB20012E2BA"=>
{"path"=>"main.m",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.objc",
"sourceTree"=>"<group>"},
"E550D7A816371B7A00A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E5FBB34D1635ED36009E96B0"=>
{"isa"=>"PBXContainerItemProxy",
"containerPortal"=>"E5FBB3451635ED35009E96B0",
"remoteGlobalIDString"=>"E5FBB30C1635ED35009E96B0",
"remoteInfo"=>"ReferencedProjectTests",
"proxyType"=>"2"},
"806F6FD917EFAF47001051EE"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E5FBB2D316357C93009E96B0"=>
{"path"=>"Base.lproj/CPDocument.xib",
"isa"=>"PBXFileReference",
"name"=>"Base",
"lastKnownFileType"=>"file.xib",
"sourceTree"=>"<group>"},
"E525241716245AB20012E2BA"=>
{"path"=>"CPDetailViewController.h",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.h",
"sourceTree"=>"<group>"},
"E550D6E816371B3B00A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523FA16245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523F916245AB20012E2BA"},
"E550D7A516371B7100A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"saver",
"GCC_ENABLE_OBJC_GC"=>"supported",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"ScreenSaver/ScreenSaver-Info.plist",
"INSTALL_PATH"=>"$(HOME)/Library/Screen Savers",
"GCC_PREFIX_HEADER"=>"ScreenSaver/ScreenSaver-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"E52523B716245A910012E2BA"=>
{"isa"=>"PBXContainerItemProxy",
"containerPortal"=>"E525238316245A900012E2BA",
"remoteGlobalIDString"=>"E525238B16245A900012E2BA",
"remoteInfo"=>"Cocoa Application",
"proxyType"=>"1"},
"806F6FD617EFAF47001051EE"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"BUNDLE_LOADER"=>
"$(BUILT_PRODUCTS_DIR)/iOS application.app/iOS application",
"CLANG_WARN_ENUM_CONVERSION"=>"YES",
"VALIDATE_PRODUCT"=>"YES",
"GCC_WARN_ABOUT_RETURN_TYPE"=>"YES_ERROR",
"CLANG_ENABLE_MODULES"=>"YES",
"CLANG_WARN_INT_CONVERSION"=>"YES",
"GCC_PREFIX_HEADER"=>"iOS staticLibrary/iOS staticLibrary-Prefix.pch",
"CLANG_WARN_CONSTANT_CONVERSION"=>"YES",
"TEST_HOST"=>"$(BUNDLE_LOADER)",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"CLANG_WARN_DIRECT_OBJC_ISA_USAGE"=>"YES_ERROR",
"GCC_WARN_UNUSED_FUNCTION"=>"YES",
"CLANG_WARN_BOOL_CONVERSION"=>"YES",
"SDKROOT"=>"iphoneos",
"PRODUCT_NAME"=>"$(TARGET_NAME)",
"IPHONEOS_DEPLOYMENT_TARGET"=>"7.0",
"CLANG_WARN_OBJC_ROOT_CLASS"=>"YES_ERROR",
"ENABLE_NS_ASSERTIONS"=>"NO",
"ARCHS"=>"$(ARCHS_STANDARD_INCLUDING_64_BIT)",
"WRAPPER_EXTENSION"=>"xctest",
"INFOPLIST_FILE"=>
"iOS staticLibraryTests/iOS staticLibraryTests-Info.plist",
"GCC_WARN_UNDECLARED_SELECTOR"=>"YES"},
"name"=>"Release"},
"E550D8B016371C1000A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"PRODUCT_NAME"=>"$(TARGET_NAME)",
"GCC_PREFIX_HEADER"=>"CommandLineTool/CommandLineTool-Prefix.pch"},
"name"=>"Debug"},
"E525241416245AB20012E2BA"=>
{"path"=>"CPMasterViewController.h",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.h",
"sourceTree"=>"<group>"},
"E550D75E16371B6300A003E9"=>
{"path"=>"PreferencePanel.prefPane",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E52523EB16245A910012E2BA"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"octest",
"FRAMEWORK_SEARCH_PATHS"=>"\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"",
"COMBINE_HIDPI_IMAGES"=>"YES",
"TEST_HOST"=>"$(BUNDLE_LOADER)",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>
"Cocoa ApplicationTests/Cocoa ApplicationTests-Info.plist",
"BUNDLE_LOADER"=>
"$(BUILT_PRODUCTS_DIR)/Cocoa Application.app/Contents/MacOS/Cocoa Application",
"GCC_PREFIX_HEADER"=>"Cocoa Application/Cocoa Application-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"806F6FC517EFAF47001051EE"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"806F6FC417EFAF47001051EE"},
"E550D8B516371C1700A003E9"=>
{"buildConfigurationList"=>"E550D8F216371C1800A003E9",
"productReference"=>"E550D8B616371C1700A003E9",
"productType"=>"com.apple.product-type.application",
"productName"=>"MacRubyApplication",
"isa"=>"PBXNativeTarget",
"name"=>"MacRubyApplication"},
"E550D85916371BD600A003E9"=>
{"buildConfigurationList"=>"E550D86516371BD700A003E9",
"productReference"=>"E550D85A16371BD600A003E9",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"XPCServic",
"isa"=>"PBXNativeTarget",
"name"=>"XPCServic"},
"E550D70216371B4400A003E9"=>
{"path"=>"ImageUnitPlugIn.plugin",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E525242916245AB20012E2BA"=>
{"isa"=>"PBXVariantGroup",
"name"=>"InfoPlist.strings",
"sourceTree"=>"<group>"},
"E525240316245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525240216245AB20012E2BA"},
"E52523DA16245A910012E2BA"=>
{"path"=>"GetMetadataForFile.m",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.objc",
"sourceTree"=>"<group>"},
"E550D6AA16371AF600A003E9"=>
{"buildConfigurationList"=>"E550D6AB16371AF600A003E9",
"isa"=>"PBXAggregateTarget",
"productName"=>"Aggregate",
"name"=>"Aggregate"},
"E550D7A916371B7A00A003E9"=>
{"buildConfigurationList"=>"E550D7BE16371B7A00A003E9",
"productReference"=>"E550D7AA16371B7A00A003E9",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"SpotLightImporter",
"isa"=>"PBXNativeTarget",
"name"=>"SpotLightImporter"},
"E550D75B16371B6300A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E5D464AE163578C7006A4730"=>
{"currentVersion"=>"E5D464AF163578C7006A4730",
"sourceTree"=>"<group>",
"isa"=>"XCVersionGroup",
"path"=>"Cocoa Application/Deployment_target.xcdatamodeld",
"versionGroupType"=>"wrapper.xcdatamodel",
"name"=>"Deployment_target.xcdatamodeld"},
"E52523C916245A910012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523C616245A910012E2BA"},
"806F6FC217EFAF47001051EE"=>
{"buildConfigurationList"=>"806F6FDA17EFAF47001051EE",
"productReference"=>"806F6FC317EFAF47001051EE",
"productType"=>"com.apple.product-type.bundle.unit-test",
"productName"=>"iOS staticLibraryTests",
"isa"=>"PBXNativeTarget",
"name"=>"iOS staticLibraryTests"},
"E550D8B216371C1700A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E5D464AB163578AC006A4730"=>
{"currentVersion"=>"E5D464AC163578AC006A4730",
"sourceTree"=>"<group>",
"isa"=>"XCVersionGroup",
"path"=>"Cocoa Application/Tools_version.xcdatamodeld",
"versionGroupType"=>"wrapper.xcdatamodel",
"name"=>"Tools_version.xcdatamodeld"},
"E550D6E916371B3B00A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525242616245AB20012E2BA"=>
{"path"=>"iOS applicationTests",
"isa"=>"PBXGroup",
"sourceTree"=>"<group>"},
"E525240016245AB20012E2BA"=>
{"path"=>"en.lproj/InfoPlist.strings",
"isa"=>"PBXFileReference",
"name"=>"en",
"lastKnownFileType"=>"text.plist.strings",
"sourceTree"=>"<group>"},
"E550D7A616371B7A00A003E9"=>
{"isa"=>"PBXSourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"806F6FBD17EFAF46001051EE"=>
{"path"=>"iOS_staticLibrary.m",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.objc",
"sourceTree"=>"<group>"},
"E550D73916371B5A00A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E5FBB34B1635ED36009E96B0"=>
{"isa"=>"PBXContainerItemProxy",
"containerPortal"=>"E5FBB3451635ED35009E96B0",
"remoteGlobalIDString"=>"E5FBB2E51635ED34009E96B0",
"remoteInfo"=>"ReferencedProject",
"proxyType"=>"2"},
"E52523B816245A910012E2BA"=>
{"isa"=>"PBXTargetDependency",
"target"=>"E525238B16245A900012E2BA",
"targetProxy"=>"E52523B716245A910012E2BA"},
"E5D464A916357867006A4730"=>
{"usesTabs"=>"1",
"indentWidth"=>"4",
"sourceTree"=>"<group>",
"isa"=>"PBXFileReference",
"tabWidth"=>"4",
"fileEncoding"=>"4",
"path"=>"Cocoa Application/Text_settings",
"lastKnownFileType"=>"text",
"name"=>"Text_settings",
"wrapsLines"=>"1"},
"E550D75F16371B6300A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239016245A900012E2BA"},
"E525241516245AB20012E2BA"=>
{"path"=>"CPMasterViewController.m",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.objc",
"sourceTree"=>"<group>"},
"E550D7A316371B7100A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E5DCFBD916285415002C6803"=>
{"isa"=>"PBXHeadersBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"806F6FBA17EFAF46001051EE"=>
{"path"=>"iOS staticLibrary-Prefix.pch",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.h",
"sourceTree"=>"<group>"},
"E52523B516245A910012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523B416245A910012E2BA"},
"E5D4649E163577FB006A4730"=>
{"path"=>
"../../../../Users/fabio/Documents/GitHub/CP/Xcodeproj/spec/fixtures/Sample Project/Cocoa Application/Relative_to_developer_direcotry",
"isa"=>"PBXFileReference",
"sourceTree"=>"DEVELOPER_DIR",
"name"=>"Relative_to_developer_direcotry",
"fileEncoding"=>"4",
"lastKnownFileType"=>"text"},
"806F6FD417EFAF47001051EE"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"CLANG_WARN_ENUM_CONVERSION"=>"YES",
"VALIDATE_PRODUCT"=>"YES",
"DSTROOT"=>"/tmp/iOS_staticLibrary.dst",
"GCC_WARN_ABOUT_RETURN_TYPE"=>"YES_ERROR",
"CLANG_ENABLE_MODULES"=>"YES",
"CLANG_WARN_INT_CONVERSION"=>"YES",
"GCC_PREFIX_HEADER"=>"iOS staticLibrary/iOS staticLibrary-Prefix.pch",
"CLANG_WARN_CONSTANT_CONVERSION"=>"YES",
"OTHER_LDFLAGS"=>"-ObjC",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"SDKROOT"=>"iphoneos",
"GCC_WARN_UNUSED_FUNCTION"=>"YES",
"CLANG_WARN_BOOL_CONVERSION"=>"YES",
"CLANG_WARN_DIRECT_OBJC_ISA_USAGE"=>"YES_ERROR",
"PRODUCT_NAME"=>"$(TARGET_NAME)",
"IPHONEOS_DEPLOYMENT_TARGET"=>"7.0",
"CLANG_WARN_OBJC_ROOT_CLASS"=>"YES_ERROR",
"ENABLE_NS_ASSERTIONS"=>"NO",
"ARCHS"=>"$(ARCHS_STANDARD_INCLUDING_64_BIT)",
"SKIP_INSTALL"=>"YES",
"GCC_WARN_UNDECLARED_SELECTOR"=>"YES"},
"name"=>"Release"},
"E550D7E016371B9800A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E550D7DF16371B9800A003E9"},
"E550D84A16371BD000A003E9"=>
{"path"=>"Bundle.bundle",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E525241216245AB20012E2BA"=>
{"path"=>"iOS_application.xcdatamodel",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"wrapper.xcdatamodel",
"sourceTree"=>"<group>"},
"E5D464AF163578C7006A4730"=>
{"path"=>"Deployment_target.xcdatamodel",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"wrapper.xcdatamodel",
"sourceTree"=>"<group>"},
"E550D75C16371B6300A003E9"=>
{"isa"=>"PBXRezBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"806F6FC317EFAF47001051EE"=>
{"path"=>"iOS staticLibraryTests.xctest",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D8B316371C1700A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D8DF16371C1800A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523D016245A910012E2BA"},
"E550D85716371BD600A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D79816371B7100A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E550D79716371B7100A003E9"},
"E550D70016371B4400A003E9"=>
{"isa"=>"PBXRezBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525242716245AB20012E2BA"=>
{"isa"=>"PBXGroup", "name"=>"Supporting Files", "sourceTree"=>"<group>"},
"E550D7A716371B7A00A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525240116245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523FF16245AB20012E2BA"},
"806F6FBE17EFAF46001051EE"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"806F6FBD17EFAF46001051EE"},
"E52523C716245A910012E2BA"=>
{"isa"=>"PBXContainerItemProxy",
"containerPortal"=>"E525238316245A900012E2BA",
"remoteGlobalIDString"=>"E52523C516245A910012E2BA",
"remoteInfo"=>"Cocoa ApplicationImporter",
"proxyType"=>"1"},
"E52523F916245AB20012E2BA"=>
{"path"=>"Library/Frameworks/CoreGraphics.framework",
"isa"=>"PBXFileReference",
"name"=>"CoreGraphics.framework",
"lastKnownFileType"=>"wrapper.framework",
"sourceTree"=>"DEVELOPER_DIR"},
"806F6FC017EFAF47001051EE"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E550D7C916371B9000A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239016245A900012E2BA"},
"E525242416245AB20012E2BA"=>
{"isa"=>"PBXContainerItemProxy",
"containerPortal"=>"E525238316245A900012E2BA",
"remoteGlobalIDString"=>"E52523F316245AB20012E2BA",
"remoteInfo"=>"iOS application",
"proxyType"=>"1"},
"E550D80A16371BA500A003E9"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"bundle",
"COMBINE_HIDPI_IMAGES"=>"YES",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>"InstallerPlugIn/InstallerPlugIn-Info.plist",
"INSTALL_PATH"=>"$(HOME)/Library/Bundles",
"GCC_PREFIX_HEADER"=>"InstallerPlugIn/InstallerPlugIn-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Release"},
"806F6FBB17EFAF46001051EE"=>
{"path"=>"iOS_staticLibrary.h",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"sourcecode.c.h",
"sourceTree"=>"<group>"},
"E550D73716371B5A00A003E9"=>
{"isa"=>"PBXFrameworksBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523B616245A910012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239016245A900012E2BA"},
"806F6FD517EFAF47001051EE"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"BUNDLE_LOADER"=>
"$(BUILT_PRODUCTS_DIR)/iOS application.app/iOS application",
"CLANG_WARN_ENUM_CONVERSION"=>"YES",
"GCC_WARN_ABOUT_RETURN_TYPE"=>"YES_ERROR",
"CLANG_ENABLE_MODULES"=>"YES",
"CLANG_WARN_INT_CONVERSION"=>"YES",
"GCC_PREFIX_HEADER"=>"iOS staticLibrary/iOS staticLibrary-Prefix.pch",
"CLANG_WARN_CONSTANT_CONVERSION"=>"YES",
"TEST_HOST"=>"$(BUNDLE_LOADER)",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"CLANG_WARN_DIRECT_OBJC_ISA_USAGE"=>"YES_ERROR",
"GCC_WARN_UNUSED_FUNCTION"=>"YES",
"CLANG_WARN_BOOL_CONVERSION"=>"YES",
"SDKROOT"=>"iphoneos",
"PRODUCT_NAME"=>"$(TARGET_NAME)",
"IPHONEOS_DEPLOYMENT_TARGET"=>"7.0",
"CLANG_WARN_OBJC_ROOT_CLASS"=>"YES_ERROR",
"ARCHS"=>"$(ARCHS_STANDARD_INCLUDING_64_BIT)",
"WRAPPER_EXTENSION"=>"xctest",
"INFOPLIST_FILE"=>
"iOS staticLibraryTests/iOS staticLibraryTests-Info.plist",
"GCC_WARN_UNDECLARED_SELECTOR"=>"YES"},
"name"=>"Debug"},
"E550D7E116371B9800A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CC16245A910012E2BA"},
"E550D84B16371BD000A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CC16245A910012E2BA"},
"E5FBB2D216357C70009E96B0"=>
{"path"=>"Cocoa Application.entitlements",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"text.xml",
"sourceTree"=>"<group>"},
"E525243E16245B1A0012E2BA"=>
{"isa"=>"PBXCopyFilesBuildPhase",
"buildActionMask"=>"2147483647",
"dstPath"=>"",
"dstSubfolderSpec"=>"7",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525241316245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525241116245AB20012E2BA"},
"E550D75D16371B6300A003E9"=>
{"buildConfigurationList"=>"E550D77016371B6300A003E9",
"productReference"=>"E550D75E16371B6300A003E9",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"PreferencePanel",
"isa"=>"PBXNativeTarget",
"name"=>"PreferencePanel"},
"E550D6C916371B2800A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523EA16245A910012E2BA"=>
{"isa"=>"XCBuildConfiguration",
"buildSettings"=>
{"WRAPPER_EXTENSION"=>"octest",
"FRAMEWORK_SEARCH_PATHS"=>"\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"",
"COMBINE_HIDPI_IMAGES"=>"YES",
"TEST_HOST"=>"$(BUNDLE_LOADER)",
"GCC_PRECOMPILE_PREFIX_HEADER"=>"YES",
"INFOPLIST_FILE"=>
"Cocoa ApplicationTests/Cocoa ApplicationTests-Info.plist",
"BUNDLE_LOADER"=>
"$(BUILT_PRODUCTS_DIR)/Cocoa Application.app/Contents/MacOS/Cocoa Application",
"GCC_PREFIX_HEADER"=>"Cocoa Application/Cocoa Application-Prefix.pch",
"PRODUCT_NAME"=>"$(TARGET_NAME)"},
"name"=>"Debug"},
"E550D81316371BAF00A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E550D81216371BAF00A003E9"},
"E52523D916245A910012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523D816245A910012E2BA"},
"E52523B316245A910012E2BA"=>
{"path"=>"Cocoa ApplicationTests.octest",
"isa"=>"PBXFileReference",
"includeInIndex"=>"0",
"explicitFileType"=>"wrapper.cfbundle",
"sourceTree"=>"BUILT_PRODUCTS_DIR"},
"E550D85816371BD600A003E9"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"806F6FD217EFAF47001051EE"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"806F6FD117EFAF47001051EE"},
"E550D6F916371B3B00A003E9"=>
{"isa"=>"XCConfigurationList",
"defaultConfigurationIsVisible"=>"0",
"defaultConfigurationName"=>"Release"},
"E550D75A16371B6300A003E9"=>
{"isa"=>"PBXHeadersBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525241016245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525240E16245AB20012E2BA"},
"E550D88916371C0600A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E550D88816371C0600A003E9"},
"E52523C816245A910012E2BA"=>
{"isa"=>"PBXTargetDependency",
"target"=>"E52523C516245A910012E2BA",
"targetProxy"=>"E52523C716245A910012E2BA"},
"806F6FC117EFAF47001051EE"=>
{"isa"=>"PBXResourcesBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E525243B16245AE10012E2BA"=>
{"path"=>"Linked Folder",
"isa"=>"PBXFileReference",
"lastKnownFileType"=>"folder",
"sourceTree"=>"<group>"},
"E550D8DD16371C1800A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523CC16245A910012E2BA"},
"E550D79616371B7100A003E9"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E525239016245A900012E2BA"},
"E525242516245AB20012E2BA"=>
{"isa"=>"PBXTargetDependency",
"target"=>"E52523F316245AB20012E2BA",
"targetProxy"=>"E525242416245AB20012E2BA"},
"806F6FBC17EFAF46001051EE"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"806F6FBB17EFAF46001051EE"},
"E550D73816371B5A00A003E9"=>
{"isa"=>"PBXHeadersBuildPhase",
"buildActionMask"=>"2147483647",
"runOnlyForDeploymentPostprocessing"=>"0"},
"E52523C516245A910012E2BA"=>
{"buildConfigurationList"=>"E52523E316245A910012E2BA",
"productReference"=>"E52523C616245A910012E2BA",
"productType"=>"com.apple.product-type.bundle",
"productName"=>"Cocoa ApplicationImporter",
"isa"=>"PBXNativeTarget",
"name"=>"Cocoa ApplicationImporter"},
"E52523F716245AB20012E2BA"=>
{"isa"=>"PBXBuildFile", "fileRef"=>"E52523F616245AB20012E2BA"}},
"rootObject"=>"E525238316245A900012E2BA"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment