cocoapods 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. data/CHANGELOG.md +129 -0
  2. data/README.md +58 -54
  3. data/bin/pod +1 -0
  4. data/lib/cocoapods.rb +7 -10
  5. data/lib/cocoapods/bridge_support_generator.rb +3 -5
  6. data/lib/cocoapods/command.rb +1 -1
  7. data/lib/cocoapods/command/repo.rb +22 -12
  8. data/lib/cocoapods/command/setup.rb +14 -3
  9. data/lib/cocoapods/command/spec.rb +8 -7
  10. data/lib/cocoapods/config.rb +2 -2
  11. data/lib/cocoapods/dependency.rb +65 -3
  12. data/lib/cocoapods/downloader.rb +7 -2
  13. data/lib/cocoapods/installer.rb +244 -99
  14. data/lib/cocoapods/podfile.rb +145 -10
  15. data/lib/cocoapods/resolver.rb +10 -6
  16. data/lib/cocoapods/specification.rb +13 -12
  17. data/lib/cocoapods/specification/set.rb +34 -0
  18. data/lib/cocoapods/xcodeproj_ext.rb +99 -0
  19. metadata +32 -35
  20. data/lib/cocoapods/project_template.rb +0 -35
  21. data/lib/cocoapods/xcode/config.rb +0 -33
  22. data/lib/cocoapods/xcode/copy_resources_script.rb +0 -21
  23. data/lib/cocoapods/xcode/project.rb +0 -356
  24. data/lib/cocoapods/xcode/workspace.rb +0 -56
  25. data/xcode-project-templates/cocoa-static-library/Pods-Prefix.pch +0 -7
  26. data/xcode-project-templates/cocoa-static-library/Pods.xcconfig +0 -1
  27. data/xcode-project-templates/cocoa-static-library/Pods.xcodeproj/project.pbxproj +0 -236
  28. data/xcode-project-templates/cocoa-static-library/PodsResources.sh +0 -8
  29. data/xcode-project-templates/cocoa-touch-static-library/Pods-Prefix.pch +0 -7
  30. data/xcode-project-templates/cocoa-touch-static-library/Pods.xcconfig +0 -1
  31. data/xcode-project-templates/cocoa-touch-static-library/Pods.xcodeproj/project.pbxproj +0 -248
  32. data/xcode-project-templates/cocoa-touch-static-library/PodsResources.sh +0 -8
@@ -1,56 +0,0 @@
1
- framework 'Foundation'
2
- require 'fileutils'
3
-
4
- module Pod
5
- module Xcode
6
- class Workspace
7
- def initialize(*projpaths)
8
- @projpaths = projpaths
9
- end
10
-
11
- def self.new_from_xcworkspace(path)
12
- begin
13
- from_s(File.read(File.join(path, 'contents.xcworkspacedata')))
14
- rescue Errno::ENOENT
15
- new
16
- end
17
- end
18
-
19
- def self.from_s(xml)
20
- doc = NSXMLDocument.alloc.initWithXMLString(xml, options:0, error:nil)
21
- projpaths = doc.nodesForXPath("/Workspace/FileRef", error:nil).map do |node|
22
- node.attributeForName("location").stringValue.sub(/^group:/, '')
23
- end
24
- new(*projpaths)
25
- end
26
-
27
- attr_reader :projpaths
28
-
29
- def <<(projpath)
30
- @projpaths << projpath
31
- end
32
-
33
- def include?(projpath)
34
- @projpaths.include?(projpath)
35
- end
36
-
37
- TEMPLATE = %q[<?xml version="1.0" encoding="UTF-8"?><Workspace version="1.0"></Workspace>]
38
- def to_s
39
- doc = NSXMLDocument.alloc.initWithXMLString(TEMPLATE, options:0, error:nil)
40
- @projpaths.each do |projpath|
41
- el = NSXMLNode.elementWithName("FileRef")
42
- el.addAttribute(NSXMLNode.attributeWithName("location", stringValue:"group:#{projpath}"))
43
- doc.rootElement.addChild(el)
44
- end
45
- NSString.alloc.initWithData(doc.XMLData, encoding:NSUTF8StringEncoding)
46
- end
47
-
48
- def save_as(path)
49
- FileUtils.mkdir_p(path)
50
- File.open(File.join(path, 'contents.xcworkspacedata'), 'w') do |out|
51
- out << to_s
52
- end
53
- end
54
- end
55
- end
56
- end
@@ -1,7 +0,0 @@
1
- //
2
- // Prefix header for all source files of the 'Pods' target in the 'Pods' project
3
- //
4
-
5
- #ifdef __OBJC__
6
- #import <Cocoa/Cocoa.h>
7
- #endif
@@ -1,236 +0,0 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 46;
7
- objects = {
8
-
9
- /* Begin PBXBuildFile section */
10
- 518ACD3F1446050200F6BE80 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 518ACD3E1446050200F6BE80 /* Cocoa.framework */; };
11
- /* End PBXBuildFile section */
12
-
13
- /* Begin PBXFileReference section */
14
- 518ACD3B1446050200F6BE80 /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; };
15
- 518ACD3E1446050200F6BE80 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
16
- 518ACD461446050200F6BE80 /* Pods-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Pods-Prefix.pch"; sourceTree = "<group>"; };
17
- 518ACD53144605B400F6BE80 /* Pods.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Pods.xcconfig; sourceTree = "<group>"; };
18
- /* End PBXFileReference section */
19
-
20
- /* Begin PBXFrameworksBuildPhase section */
21
- 518ACD381446050200F6BE80 /* Frameworks */ = {
22
- isa = PBXFrameworksBuildPhase;
23
- buildActionMask = 2147483647;
24
- files = (
25
- 518ACD3F1446050200F6BE80 /* Cocoa.framework in Frameworks */,
26
- );
27
- runOnlyForDeploymentPostprocessing = 0;
28
- };
29
- /* End PBXFrameworksBuildPhase section */
30
-
31
- /* Begin PBXGroup section */
32
- 518ACD301446050100F6BE80 = {
33
- isa = PBXGroup;
34
- children = (
35
- 518ACD53144605B400F6BE80 /* Pods.xcconfig */,
36
- 518ACD5B1446449B00F6BE80 /* Pods */,
37
- 518ACD3D1446050200F6BE80 /* Frameworks */,
38
- 518ACD3C1446050200F6BE80 /* Products */,
39
- );
40
- sourceTree = "<group>";
41
- };
42
- 518ACD3C1446050200F6BE80 /* Products */ = {
43
- isa = PBXGroup;
44
- children = (
45
- 518ACD3B1446050200F6BE80 /* libPods.a */,
46
- );
47
- name = Products;
48
- sourceTree = "<group>";
49
- };
50
- 518ACD3D1446050200F6BE80 /* Frameworks */ = {
51
- isa = PBXGroup;
52
- children = (
53
- 518ACD3E1446050200F6BE80 /* Cocoa.framework */,
54
- );
55
- name = Frameworks;
56
- sourceTree = "<group>";
57
- };
58
- 518ACD451446050200F6BE80 /* Supporting Files */ = {
59
- isa = PBXGroup;
60
- children = (
61
- 518ACD461446050200F6BE80 /* Pods-Prefix.pch */,
62
- );
63
- name = "Supporting Files";
64
- path = Pods;
65
- sourceTree = "<group>";
66
- };
67
- 518ACD5B1446449B00F6BE80 /* Pods */ = {
68
- isa = PBXGroup;
69
- children = (
70
- 518ACD451446050200F6BE80 /* Supporting Files */,
71
- );
72
- name = Pods;
73
- sourceTree = "<group>";
74
- };
75
- /* End PBXGroup section */
76
-
77
- /* Begin PBXHeadersBuildPhase section */
78
- 518ACD391446050200F6BE80 /* Headers */ = {
79
- isa = PBXHeadersBuildPhase;
80
- buildActionMask = 2147483647;
81
- files = (
82
- );
83
- runOnlyForDeploymentPostprocessing = 0;
84
- };
85
- /* End PBXHeadersBuildPhase section */
86
-
87
- /* Begin PBXNativeTarget section */
88
- 518ACD3A1446050200F6BE80 /* Pods */ = {
89
- isa = PBXNativeTarget;
90
- buildConfigurationList = 518ACD4C1446050200F6BE80 /* Build configuration list for PBXNativeTarget "Pods" */;
91
- buildPhases = (
92
- 518ACD371446050200F6BE80 /* Sources */,
93
- 518ACD381446050200F6BE80 /* Frameworks */,
94
- 518ACD391446050200F6BE80 /* Headers */,
95
- );
96
- buildRules = (
97
- );
98
- dependencies = (
99
- );
100
- name = Pods;
101
- productName = Pods;
102
- productReference = 518ACD3B1446050200F6BE80 /* libPods.a */;
103
- productType = "com.apple.product-type.library.static";
104
- };
105
- /* End PBXNativeTarget section */
106
-
107
- /* Begin PBXProject section */
108
- 518ACD321446050100F6BE80 /* Project object */ = {
109
- isa = PBXProject;
110
- attributes = {
111
- LastUpgradeCheck = 0420;
112
- };
113
- buildConfigurationList = 518ACD351446050100F6BE80 /* Build configuration list for PBXProject "Pods" */;
114
- compatibilityVersion = "Xcode 3.2";
115
- developmentRegion = English;
116
- hasScannedForEncodings = 0;
117
- knownRegions = (
118
- en,
119
- );
120
- mainGroup = 518ACD301446050100F6BE80;
121
- productRefGroup = 518ACD3C1446050200F6BE80 /* Products */;
122
- projectDirPath = "";
123
- projectRoot = "";
124
- targets = (
125
- 518ACD3A1446050200F6BE80 /* Pods */,
126
- );
127
- };
128
- /* End PBXProject section */
129
-
130
- /* Begin PBXSourcesBuildPhase section */
131
- 518ACD371446050200F6BE80 /* Sources */ = {
132
- isa = PBXSourcesBuildPhase;
133
- buildActionMask = 2147483647;
134
- files = (
135
- );
136
- runOnlyForDeploymentPostprocessing = 0;
137
- };
138
- /* End PBXSourcesBuildPhase section */
139
-
140
- /* Begin XCBuildConfiguration section */
141
- 518ACD4A1446050200F6BE80 /* Debug */ = {
142
- isa = XCBuildConfiguration;
143
- buildSettings = {
144
- ALWAYS_SEARCH_USER_PATHS = NO;
145
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
146
- COPY_PHASE_STRIP = NO;
147
- GCC_C_LANGUAGE_STANDARD = gnu99;
148
- GCC_DYNAMIC_NO_PIC = NO;
149
- GCC_ENABLE_OBJC_EXCEPTIONS = YES;
150
- GCC_OPTIMIZATION_LEVEL = 0;
151
- GCC_PREPROCESSOR_DEFINITIONS = (
152
- "DEBUG=1",
153
- "$(inherited)",
154
- );
155
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
156
- GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
157
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
158
- GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
159
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
160
- GCC_WARN_UNUSED_VARIABLE = YES;
161
- INSTALL_PATH = "$(BUILT_PRODUCTS_DIR)";
162
- MACOSX_DEPLOYMENT_TARGET = 10.7;
163
- ONLY_ACTIVE_ARCH = YES;
164
- SDKROOT = macosx;
165
- };
166
- name = Debug;
167
- };
168
- 518ACD4B1446050200F6BE80 /* Release */ = {
169
- isa = XCBuildConfiguration;
170
- buildSettings = {
171
- ALWAYS_SEARCH_USER_PATHS = NO;
172
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
173
- COPY_PHASE_STRIP = YES;
174
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
175
- GCC_C_LANGUAGE_STANDARD = gnu99;
176
- GCC_ENABLE_OBJC_EXCEPTIONS = YES;
177
- GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
178
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
179
- GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
180
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
181
- GCC_WARN_UNUSED_VARIABLE = YES;
182
- INSTALL_PATH = "$(BUILT_PRODUCTS_DIR)";
183
- MACOSX_DEPLOYMENT_TARGET = 10.7;
184
- SDKROOT = macosx;
185
- };
186
- name = Release;
187
- };
188
- 518ACD4D1446050200F6BE80 /* Debug */ = {
189
- isa = XCBuildConfiguration;
190
- baseConfigurationReference = 518ACD53144605B400F6BE80 /* Pods.xcconfig */;
191
- buildSettings = {
192
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
193
- GCC_PREFIX_HEADER = "Pods-Prefix.pch";
194
- OTHER_LDFLAGS = (
195
- );
196
- PRODUCT_NAME = "$(TARGET_NAME)";
197
- };
198
- name = Debug;
199
- };
200
- 518ACD4E1446050200F6BE80 /* Release */ = {
201
- isa = XCBuildConfiguration;
202
- baseConfigurationReference = 518ACD53144605B400F6BE80 /* Pods.xcconfig */;
203
- buildSettings = {
204
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
205
- GCC_PREFIX_HEADER = "Pods-Prefix.pch";
206
- OTHER_LDFLAGS = (
207
- );
208
- PRODUCT_NAME = "$(TARGET_NAME)";
209
- };
210
- name = Release;
211
- };
212
- /* End XCBuildConfiguration section */
213
-
214
- /* Begin XCConfigurationList section */
215
- 518ACD351446050100F6BE80 /* Build configuration list for PBXProject "Pods" */ = {
216
- isa = XCConfigurationList;
217
- buildConfigurations = (
218
- 518ACD4A1446050200F6BE80 /* Debug */,
219
- 518ACD4B1446050200F6BE80 /* Release */,
220
- );
221
- defaultConfigurationIsVisible = 0;
222
- defaultConfigurationName = Release;
223
- };
224
- 518ACD4C1446050200F6BE80 /* Build configuration list for PBXNativeTarget "Pods" */ = {
225
- isa = XCConfigurationList;
226
- buildConfigurations = (
227
- 518ACD4D1446050200F6BE80 /* Debug */,
228
- 518ACD4E1446050200F6BE80 /* Release */,
229
- );
230
- defaultConfigurationIsVisible = 0;
231
- defaultConfigurationName = Release;
232
- };
233
- /* End XCConfigurationList section */
234
- };
235
- rootObject = 518ACD321446050100F6BE80 /* Project object */;
236
- }
@@ -1,8 +0,0 @@
1
- #!/bin/sh
2
-
3
- install_resource()
4
- {
5
- echo "cp -R ${SRCROOT}/Pods/$1 ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
6
- cp -R ${SRCROOT}/Pods/$1 ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}
7
- }
8
-
@@ -1,7 +0,0 @@
1
- //
2
- // Prefix header for all source files of the 'Pods' target in the 'Pods' project
3
- //
4
-
5
- #ifdef __OBJC__
6
- #import <UIKit/UIKit.h>
7
- #endif
@@ -1,248 +0,0 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 46;
7
- objects = {
8
-
9
- /* Begin PBXBuildFile section */
10
- 515B0FB9141D52E0001DC3E6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 515B0FB8141D52E0001DC3E6 /* Foundation.framework */; };
11
- /* End PBXBuildFile section */
12
-
13
- /* Begin PBXCopyFilesBuildPhase section */
14
- 82A8B61C142F7EC7006897C9 /* Copy Public Headers */ = {
15
- isa = PBXCopyFilesBuildPhase;
16
- buildActionMask = 2147483647;
17
- dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)";
18
- dstSubfolderSpec = 16;
19
- files = (
20
- );
21
- name = "Copy Public Headers";
22
- runOnlyForDeploymentPostprocessing = 0;
23
- };
24
- /* End PBXCopyFilesBuildPhase section */
25
-
26
- /* Begin PBXFileReference section */
27
- 515160D0141EC5D100EBB823 /* Pods.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Pods.xcconfig; sourceTree = "<group>"; };
28
- 515B0FB5141D52E0001DC3E6 /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; };
29
- 515B0FB8141D52E0001DC3E6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
30
- 515B0FBC141D52E0001DC3E6 /* Pods-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Pods-Prefix.pch"; sourceTree = SOURCE_ROOT; };
31
- /* End PBXFileReference section */
32
-
33
- /* Begin PBXFrameworksBuildPhase section */
34
- 515B0FB2141D52E0001DC3E6 /* Frameworks */ = {
35
- isa = PBXFrameworksBuildPhase;
36
- buildActionMask = 2147483647;
37
- files = (
38
- 515B0FB9141D52E0001DC3E6 /* Foundation.framework in Frameworks */,
39
- );
40
- runOnlyForDeploymentPostprocessing = 0;
41
- };
42
- /* End PBXFrameworksBuildPhase section */
43
-
44
- /* Begin PBXGroup section */
45
- 515B0FAA141D52E0001DC3E6 = {
46
- isa = PBXGroup;
47
- children = (
48
- 515160D0141EC5D100EBB823 /* Pods.xcconfig */,
49
- 515B0FC9141D5FBE001DC3E6 /* Pods */,
50
- 515B0FB7141D52E0001DC3E6 /* Frameworks */,
51
- 515B0FB6141D52E0001DC3E6 /* Products */,
52
- );
53
- sourceTree = "<group>";
54
- };
55
- 515B0FB6141D52E0001DC3E6 /* Products */ = {
56
- isa = PBXGroup;
57
- children = (
58
- 515B0FB5141D52E0001DC3E6 /* libPods.a */,
59
- );
60
- name = Products;
61
- sourceTree = "<group>";
62
- };
63
- 515B0FB7141D52E0001DC3E6 /* Frameworks */ = {
64
- isa = PBXGroup;
65
- children = (
66
- 515B0FB8141D52E0001DC3E6 /* Foundation.framework */,
67
- );
68
- name = Frameworks;
69
- sourceTree = "<group>";
70
- };
71
- 515B0FBB141D52E0001DC3E6 /* Supporting Files */ = {
72
- isa = PBXGroup;
73
- children = (
74
- 515B0FBC141D52E0001DC3E6 /* Pods-Prefix.pch */,
75
- );
76
- name = "Supporting Files";
77
- path = Pods;
78
- sourceTree = "<group>";
79
- };
80
- 515B0FC9141D5FBE001DC3E6 /* Pods */ = {
81
- isa = PBXGroup;
82
- children = (
83
- 515B0FBB141D52E0001DC3E6 /* Supporting Files */,
84
- );
85
- name = Pods;
86
- sourceTree = "<group>";
87
- };
88
- /* End PBXGroup section */
89
-
90
- /* Begin PBXHeadersBuildPhase section */
91
- 515B0FB3141D52E0001DC3E6 /* Headers */ = {
92
- isa = PBXHeadersBuildPhase;
93
- buildActionMask = 2147483647;
94
- files = (
95
- );
96
- runOnlyForDeploymentPostprocessing = 0;
97
- };
98
- /* End PBXHeadersBuildPhase section */
99
-
100
- /* Begin PBXNativeTarget section */
101
- 515B0FB4141D52E0001DC3E6 /* Pods */ = {
102
- isa = PBXNativeTarget;
103
- buildConfigurationList = 515B0FC2141D52E0001DC3E6 /* Build configuration list for PBXNativeTarget "Pods" */;
104
- buildPhases = (
105
- 515B0FB1141D52E0001DC3E6 /* Sources */,
106
- 515B0FB2141D52E0001DC3E6 /* Frameworks */,
107
- 515B0FB3141D52E0001DC3E6 /* Headers */,
108
- 82A8B61C142F7EC7006897C9 /* Copy Public Headers */,
109
- );
110
- buildRules = (
111
- );
112
- dependencies = (
113
- );
114
- name = Pods;
115
- productName = Pods;
116
- productReference = 515B0FB5141D52E0001DC3E6 /* libPods.a */;
117
- productType = "com.apple.product-type.library.static";
118
- };
119
- /* End PBXNativeTarget section */
120
-
121
- /* Begin PBXProject section */
122
- 515B0FAC141D52E0001DC3E6 /* Project object */ = {
123
- isa = PBXProject;
124
- buildConfigurationList = 515B0FAF141D52E0001DC3E6 /* Build configuration list for PBXProject "Pods" */;
125
- compatibilityVersion = "Xcode 3.2";
126
- developmentRegion = English;
127
- hasScannedForEncodings = 0;
128
- knownRegions = (
129
- en,
130
- );
131
- mainGroup = 515B0FAA141D52E0001DC3E6;
132
- productRefGroup = 515B0FB6141D52E0001DC3E6 /* Products */;
133
- projectDirPath = "";
134
- projectRoot = "";
135
- targets = (
136
- 515B0FB4141D52E0001DC3E6 /* Pods */,
137
- );
138
- };
139
- /* End PBXProject section */
140
-
141
- /* Begin PBXSourcesBuildPhase section */
142
- 515B0FB1141D52E0001DC3E6 /* Sources */ = {
143
- isa = PBXSourcesBuildPhase;
144
- buildActionMask = 2147483647;
145
- files = (
146
- );
147
- runOnlyForDeploymentPostprocessing = 0;
148
- };
149
- /* End PBXSourcesBuildPhase section */
150
-
151
- /* Begin XCBuildConfiguration section */
152
- 515B0FC0141D52E0001DC3E6 /* Debug */ = {
153
- isa = XCBuildConfiguration;
154
- buildSettings = {
155
- ALWAYS_SEARCH_USER_PATHS = NO;
156
- ARCHS = "$(ARCHS_STANDARD_32_BIT)";
157
- COPY_PHASE_STRIP = NO;
158
- GCC_C_LANGUAGE_STANDARD = gnu99;
159
- GCC_DYNAMIC_NO_PIC = NO;
160
- GCC_OPTIMIZATION_LEVEL = 0;
161
- GCC_PREPROCESSOR_DEFINITIONS = (
162
- "DEBUG=1",
163
- "$(inherited)",
164
- );
165
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
166
- GCC_VERSION = com.apple.compilers.llvmgcc42;
167
- GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
168
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
169
- GCC_WARN_UNUSED_VARIABLE = YES;
170
- INSTALL_PATH = "$(BUILT_PRODUCTS_DIR)";
171
- IPHONEOS_DEPLOYMENT_TARGET = 4.3;
172
- PUBLIC_HEADERS_FOLDER_PATH = "$(TARGET_NAME)";
173
- SDKROOT = iphoneos;
174
- };
175
- name = Debug;
176
- };
177
- 515B0FC1141D52E0001DC3E6 /* Release */ = {
178
- isa = XCBuildConfiguration;
179
- buildSettings = {
180
- ALWAYS_SEARCH_USER_PATHS = NO;
181
- ARCHS = "$(ARCHS_STANDARD_32_BIT)";
182
- COPY_PHASE_STRIP = YES;
183
- GCC_C_LANGUAGE_STANDARD = gnu99;
184
- GCC_VERSION = com.apple.compilers.llvmgcc42;
185
- GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
186
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
187
- GCC_WARN_UNUSED_VARIABLE = YES;
188
- INSTALL_PATH = "$(BUILT_PRODUCTS_DIR)";
189
- IPHONEOS_DEPLOYMENT_TARGET = 4.3;
190
- PUBLIC_HEADERS_FOLDER_PATH = "$(TARGET_NAME)";
191
- SDKROOT = iphoneos;
192
- VALIDATE_PRODUCT = YES;
193
- };
194
- name = Release;
195
- };
196
- 515B0FC3141D52E0001DC3E6 /* Debug */ = {
197
- isa = XCBuildConfiguration;
198
- baseConfigurationReference = 515160D0141EC5D100EBB823 /* Pods.xcconfig */;
199
- buildSettings = {
200
- DSTROOT = /tmp/Pods.dst;
201
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
202
- GCC_PREFIX_HEADER = "Pods-Prefix.pch";
203
- GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
204
- OTHER_LDFLAGS = "-ObjC";
205
- PRODUCT_NAME = "$(TARGET_NAME)";
206
- SKIP_INSTALL = YES;
207
- };
208
- name = Debug;
209
- };
210
- 515B0FC4141D52E0001DC3E6 /* Release */ = {
211
- isa = XCBuildConfiguration;
212
- baseConfigurationReference = 515160D0141EC5D100EBB823 /* Pods.xcconfig */;
213
- buildSettings = {
214
- DSTROOT = /tmp/Pods.dst;
215
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
216
- GCC_PREFIX_HEADER = "Pods-Prefix.pch";
217
- GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
218
- OTHER_LDFLAGS = "-ObjC";
219
- PRODUCT_NAME = "$(TARGET_NAME)";
220
- SKIP_INSTALL = YES;
221
- };
222
- name = Release;
223
- };
224
- /* End XCBuildConfiguration section */
225
-
226
- /* Begin XCConfigurationList section */
227
- 515B0FAF141D52E0001DC3E6 /* Build configuration list for PBXProject "Pods" */ = {
228
- isa = XCConfigurationList;
229
- buildConfigurations = (
230
- 515B0FC0141D52E0001DC3E6 /* Debug */,
231
- 515B0FC1141D52E0001DC3E6 /* Release */,
232
- );
233
- defaultConfigurationIsVisible = 0;
234
- defaultConfigurationName = Release;
235
- };
236
- 515B0FC2141D52E0001DC3E6 /* Build configuration list for PBXNativeTarget "Pods" */ = {
237
- isa = XCConfigurationList;
238
- buildConfigurations = (
239
- 515B0FC3141D52E0001DC3E6 /* Debug */,
240
- 515B0FC4141D52E0001DC3E6 /* Release */,
241
- );
242
- defaultConfigurationIsVisible = 0;
243
- defaultConfigurationName = Release;
244
- };
245
- /* End XCConfigurationList section */
246
- };
247
- rootObject = 515B0FAC141D52E0001DC3E6 /* Project object */;
248
- }