fwtoolkit 0.9.3 → 1.0.1
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.
- checksums.yaml +8 -8
- data/bin/fwt +2 -112
- data/features/cocoapods/setup.feature +60 -0
- data/features/frank/model.feature +20 -0
- data/features/frank/setup.feature +28 -0
- data/features/git/create.feature +29 -0
- data/features/project/create.feature +25 -0
- data/features/step_definitions/aruba_steps.rb +11 -0
- data/features/step_definitions/git_steps.rb +30 -0
- data/features/step_definitions/project_steps.rb +50 -0
- data/features/step_definitions/rvm_steps.rb +11 -0
- data/features/step_definitions/system_steps.rb +8 -0
- data/features/support/env.rb +23 -0
- data/features/support/lib_test/aruba_fwt.rb +30 -0
- data/features/support/lib_test/aruba_mod.rb +28 -0
- data/features/support/lib_test/fake_gem.rb +47 -0
- data/features/xcode/create.feature +42 -0
- data/lib/fwtoolkit/cli/bootstrap.rb +75 -0
- data/lib/fwtoolkit/cli/ci.rb +52 -0
- data/lib/fwtoolkit/cli/cocoapods.rb +73 -0
- data/lib/fwtoolkit/cli/ext/thor.rb +35 -0
- data/lib/fwtoolkit/cli/frank.rb +113 -0
- data/lib/fwtoolkit/cli/fw_actions/template_dir.rb +59 -0
- data/lib/fwtoolkit/cli/fw_actions.rb +2 -0
- data/lib/fwtoolkit/cli/git.rb +42 -0
- data/lib/fwtoolkit/cli/ota.rb +109 -0
- data/lib/fwtoolkit/cli/ota_client/hockeyapp_client.rb +70 -0
- data/lib/fwtoolkit/cli/project.rb +83 -0
- data/lib/fwtoolkit/cli/thorutils.rb +14 -0
- data/lib/fwtoolkit/cli/xcode.rb +105 -0
- data/lib/fwtoolkit/cli.rb +27 -36
- data/lib/fwtoolkit/config/config.sample +8 -0
- data/lib/fwtoolkit/config.rb +41 -0
- data/lib/fwtoolkit/configfile.rb +36 -0
- data/lib/fwtoolkit/executable/executable.rb +45 -0
- data/lib/fwtoolkit/executable.rb +1 -0
- data/lib/fwtoolkit/ext/gem.rb +9 -0
- data/lib/fwtoolkit/ext/hash_yaml.rb +17 -0
- data/lib/fwtoolkit/git_client/git_client.rb +225 -0
- data/lib/fwtoolkit/git_client.rb +1 -0
- data/lib/fwtoolkit/projectfile.rb +50 -0
- data/lib/fwtoolkit/rake/ext/rake.rb +7 -0
- data/lib/fwtoolkit/rake/tasks/ci.rb +25 -0
- data/lib/fwtoolkit/rake/tasks/config.rb +13 -0
- data/lib/fwtoolkit/rake/tasks/ota.rb +31 -0
- data/lib/fwtoolkit/rake/tasks/project.rb +28 -0
- data/lib/fwtoolkit/rake/tasks/test.rb +59 -0
- data/lib/fwtoolkit/rake/tasks/xcode.rb +69 -0
- data/lib/fwtoolkit/rake/tasks.rb +20 -0
- data/lib/fwtoolkit/version.rb +1 -1
- data/lib/fwtoolkit.rb +4 -7
- data/spec/git_client_spec.rb +316 -0
- data/spec/project_config_spec.rb +40 -0
- data/spec/rake/project.rb +28 -0
- data/spec/rake/test.rb +85 -0
- data/spec/rake/xcode.rb +66 -0
- data/spec/support/aruba-doubles-rspec.rb +21 -0
- data/spec/support/ctx_rake.rb +23 -0
- data/spec/support/double_helper.rb +13 -0
- data/spec/support/project_generator.rb +45 -0
- data/templates/default_project/frank/%project_name%/%target_name%/%class_prefix%AppDelegate+Frank.h.tt +15 -0
- data/templates/{cucumber/AppDelegate+Frank.m.erb → default_project/frank/%project_name%/%target_name%/%class_prefix%AppDelegate+Frank.m.tt} +25 -21
- data/templates/{cucumber → default_project/frank/%project_name%/Frank}/features/example.feature +0 -0
- data/templates/{cucumber → default_project/frank/%project_name%/Frank}/features/step_definitions/launch_steps.rb +0 -0
- data/templates/{cucumber → default_project/frank/%project_name%/Frank}/features/support/env.rb +0 -0
- data/templates/{cucumber → default_project/frank/%project_name%/Frank}/features/support/mimic.rb +0 -0
- data/templates/default_project/frank/~template_config.rb +11 -0
- data/templates/default_project/frank_seed_core_data/%project_name%/Frank/features/support/models/%class_name%.rb.tt +30 -0
- data/templates/default_project/frank_seed_support/%project_name%/Frank/features/support/models/factories.rb.tt +10 -0
- data/templates/{cucumber → default_project/frank_seed_support/%project_name%/Frank}/features/support/views/my_objects_json.erb +0 -0
- data/templates/{cucumber → default_project/frank_seed_support/%project_name%/Frank}/features/support/views/my_objects_xml.erb +0 -0
- data/templates/{fwt/gitignore.erb → default_project/git/.gitignore} +0 -0
- data/templates/{fwt/rvmrc.erb → default_project/rvm/.rvmrc.tt} +2 -2
- data/templates/default_project/rvm/Gemfile +4 -0
- data/templates/default_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt +583 -0
- data/templates/default_project/xcode/%project_name%/%project_name%.xcodeproj/project.xcworkspace/contents.xcworkspacedata.tt +7 -0
- data/templates/default_project/xcode/%project_name%/%project_name%.xcodeproj/xcshareddata/xcschemes/%project_name%-Release.xcscheme.tt +105 -0
- data/templates/default_project/xcode/%project_name%/%project_name%.xcodeproj/xcshareddata/xcschemes/%project_name%-Testing.xcscheme.tt +105 -0
- data/templates/default_project/xcode/%project_name%/%project_name%.xcodeproj/xcshareddata/xcschemes/%project_name%.xcscheme.tt +105 -0
- data/templates/default_project/xcode/%project_name%/%target_name%/%class_prefix%AppDelegate.h.tt +15 -0
- data/templates/default_project/xcode/%project_name%/%target_name%/%class_prefix%AppDelegate.m.tt +49 -0
- data/templates/{fwt/default_project/Info.plist.erb → default_project/xcode/%project_name%/%target_name%/Supporting Files/%project_name%-Info.plist} +0 -0
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/%project_name%-Prefix.pch.tt +14 -0
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/Settings.bundle/Root.plist +53 -0
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/Settings.bundle/en.lproj/Root.strings +0 -0
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/en.lproj/InfoPlist.strings +2 -0
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/fw-shared.xcconfig +49 -0
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/info.plist.h.tt +8 -0
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/main.m.tt +18 -0
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/version.sh +159 -0
- data/templates/default_project/xcode/%project_name%/%tests_target_name%/%project_name%Tests.h.tt +13 -0
- data/templates/default_project/xcode/%project_name%/%tests_target_name%/%project_name%Tests.m.tt +32 -0
- data/templates/default_project/xcode/%project_name%/%tests_target_name%/Supporting Files/%tests_target_name%-Info.plist +22 -0
- data/templates/default_project/xcode/%project_name%/%tests_target_name%/Supporting Files/en.lproj/InfoPlist.strings +2 -0
- data/templates/default_project/xcode/%project_name%/Default.png +0 -0
- data/templates/default_project/xcode/%project_name%/Resources/Default-568h@2x.png +0 -0
- data/templates/default_project/xcode/%project_name%/Resources/Default.png +0 -0
- data/templates/default_project/xcode/%project_name%/Resources/Default@2x.png +0 -0
- data/templates/default_project/xcode/%project_name%.xcworkspace/contents.xcworkspacedata.tt +7 -0
- data/templates/default_project/xcode/FWProjectfile.tt +14 -0
- data/templates/default_project/xcode/Podfile.tt +4 -0
- data/templates/default_project/xcode/Rakefile.tt +14 -0
- data/templates/default_project/xcode/cruise_config.rb +3 -0
- data/templates/default_project/xcode/~template_config.rb +5 -0
- metadata +187 -141
- data/lib/fwtoolkit/tasks/build.rb +0 -121
- data/lib/fwtoolkit/tasks/ci.rb +0 -30
- data/lib/fwtoolkit/tasks/cocoapods.rb +0 -32
- data/lib/fwtoolkit/tasks/frank.rb +0 -119
- data/lib/fwtoolkit/tasks/helper.rb +0 -16
- data/lib/fwtoolkit/tasks/services.rb +0 -41
- data/lib/fwtoolkit/tasks.rb +0 -24
- data/lib/fwtoolkit/test/frank_model.rb +0 -120
- data/lib/fwtoolkit/test/misc_steps.rb +0 -9
- data/lib/fwtoolkit/test/model_helper.rb +0 -94
- data/lib/fwtoolkit/test/network_steps.rb +0 -60
- data/lib/fwtoolkit/test/pickle_steps.rb +0 -101
- data/lib/fwtoolkit/test/timeout_helper.rb +0 -21
- data/lib/fwtoolkit/test/ui_helper.rb +0 -19
- data/lib/fwtoolkit/test/ui_steps.rb +0 -17
- data/templates/cucumber/AppDelegate+Frank.h.erb +0 -15
- data/templates/fwt/Gemfile.erb +0 -3
- data/templates/fwt/Podfile.erb +0 -4
- data/templates/fwt/Rakefile.erb +0 -24
- data/templates/fwt/default_project/AppDelegate.h.erb +0 -12
- data/templates/fwt/default_project/AppDelegate.m.erb +0 -20
- data/templates/fwt/default_project/Prefix.pch.erb +0 -6
- data/templates/fwt/default_project/main.m.erb +0 -15
- data/templates/models/factories.rb.erb +0 -10
- data/templates/models/model.rb.erb +0 -30
data/templates/default_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt
ADDED
|
@@ -0,0 +1,583 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 46;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
B7402BC916C26CE70014570E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7402BC816C26CE70014570E /* UIKit.framework */; };
|
|
11
|
+
B7402BCB16C26CE70014570E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7402BCA16C26CE70014570E /* Foundation.framework */; };
|
|
12
|
+
B7402BCD16C26CE70014570E /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7402BCC16C26CE70014570E /* CoreGraphics.framework */; };
|
|
13
|
+
B7402BD316C26CE70014570E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = B7402BD116C26CE70014570E /* InfoPlist.strings */; };
|
|
14
|
+
B7402BD516C26CE70014570E /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = B7402BD416C26CE70014570E /* main.m */; };
|
|
15
|
+
B7402BE716C26CE70014570E /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7402BE616C26CE70014570E /* SenTestingKit.framework */; };
|
|
16
|
+
B7402BE816C26CE70014570E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7402BC816C26CE70014570E /* UIKit.framework */; };
|
|
17
|
+
B7402BE916C26CE70014570E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7402BCA16C26CE70014570E /* Foundation.framework */; };
|
|
18
|
+
B7402BF116C26CE70014570E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = B7402BEF16C26CE70014570E /* InfoPlist.strings */; };
|
|
19
|
+
B7402BFF16C26ED80014570E /* <%= config[:project_name] %>Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = B7402BFE16C26ED80014570E /* <%= config[:project_name] %>Tests.m */; };
|
|
20
|
+
B7402C1416C270FC0014570E /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B7402C1116C270FC0014570E /* Default-568h@2x.png */; };
|
|
21
|
+
B7402C1516C270FC0014570E /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = B7402C1216C270FC0014570E /* Default.png */; };
|
|
22
|
+
B7402C1616C270FC0014570E /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B7402C1316C270FC0014570E /* Default@2x.png */; };
|
|
23
|
+
B7402C1816C275940014570E /* fw-shared.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = B7402C1716C275930014570E /* fw-shared.xcconfig */; };
|
|
24
|
+
B7402C1916C275940014570E /* fw-shared.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = B7402C1716C275930014570E /* fw-shared.xcconfig */; };
|
|
25
|
+
B7402C2316C279C00014570E /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = B7402C2216C279C00014570E /* Settings.bundle */; };
|
|
26
|
+
B7402C2416C279C00014570E /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = B7402C2216C279C00014570E /* Settings.bundle */; };
|
|
27
|
+
B7402C3016C2DD800014570E /* <%= config[:class_prefix] %>AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B7402C2F16C2DD800014570E /* <%= config[:class_prefix] %>AppDelegate.m */; };
|
|
28
|
+
/* End PBXBuildFile section */
|
|
29
|
+
|
|
30
|
+
/* Begin PBXContainerItemProxy section */
|
|
31
|
+
B7402BEA16C26CE70014570E /* PBXContainerItemProxy */ = {
|
|
32
|
+
isa = PBXContainerItemProxy;
|
|
33
|
+
containerPortal = B7402BBB16C26CE70014570E /* Project object */;
|
|
34
|
+
proxyType = 1;
|
|
35
|
+
remoteGlobalIDString = B7402BC316C26CE70014570E;
|
|
36
|
+
remoteInfo = "<%= config[:project_name] %>";
|
|
37
|
+
};
|
|
38
|
+
/* End PBXContainerItemProxy section */
|
|
39
|
+
|
|
40
|
+
/* Begin PBXFileReference section */
|
|
41
|
+
B7402BC416C26CE70014570E /* <%= config[:binary_name] %>-debug.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "<%= config[:binary_name] %>-debug.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
42
|
+
B7402BC816C26CE70014570E /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
|
43
|
+
B7402BCA16C26CE70014570E /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
|
44
|
+
B7402BCC16C26CE70014570E /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
|
45
|
+
B7402BD016C26CE70014570E /* <%= config[:project_name] %>-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "<%= config[:project_name] %>-Info.plist"; sourceTree = "<group>"; };
|
|
46
|
+
B7402BD216C26CE70014570E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
|
47
|
+
B7402BD416C26CE70014570E /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
|
48
|
+
B7402BD616C26CE70014570E /* <%= config[:project_name] %>-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "<%= config[:project_name] %>-Prefix.pch"; sourceTree = "<group>"; };
|
|
49
|
+
B7402BE516C26CE70014570E /* <%= config[:binary_name] %>Tests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "<%= config[:binary_name] %>Tests.octest"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
50
|
+
B7402BE616C26CE70014570E /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; };
|
|
51
|
+
B7402BEE16C26CE70014570E /* <%= config[:tests_target_name] %>-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "<%= config[:tests_target_name] %>-Info.plist"; sourceTree = "<group>"; };
|
|
52
|
+
B7402BF016C26CE70014570E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
|
53
|
+
B7402BFD16C26ED80014570E /* <%= config[:project_name] %>Tests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "<%= config[:project_name] %>Tests.h"; sourceTree = "<group>"; };
|
|
54
|
+
B7402BFE16C26ED80014570E /* <%= config[:project_name] %>Tests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "<%= config[:project_name] %>Tests.m"; sourceTree = "<group>"; };
|
|
55
|
+
B7402C1116C270FC0014570E /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
|
|
56
|
+
B7402C1216C270FC0014570E /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
|
|
57
|
+
B7402C1316C270FC0014570E /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
|
|
58
|
+
B7402C1716C275930014570E /* fw-shared.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "fw-shared.xcconfig"; sourceTree = "<group>"; };
|
|
59
|
+
B7402C2216C279C00014570E /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Settings.bundle; sourceTree = "<group>"; };
|
|
60
|
+
B7402C2E16C2DD800014570E /* <%= config[:class_prefix] %>AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "<%= config[:class_prefix] %>AppDelegate.h"; sourceTree = "<group>"; };
|
|
61
|
+
B7402C2F16C2DD800014570E /* <%= config[:class_prefix] %>AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "<%= config[:class_prefix] %>AppDelegate.m"; sourceTree = "<group>"; };
|
|
62
|
+
/* End PBXFileReference section */
|
|
63
|
+
|
|
64
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
65
|
+
B7402BC116C26CE70014570E /* Frameworks */ = {
|
|
66
|
+
isa = PBXFrameworksBuildPhase;
|
|
67
|
+
buildActionMask = 2147483647;
|
|
68
|
+
files = (
|
|
69
|
+
B7402BC916C26CE70014570E /* UIKit.framework in Frameworks */,
|
|
70
|
+
B7402BCB16C26CE70014570E /* Foundation.framework in Frameworks */,
|
|
71
|
+
B7402BCD16C26CE70014570E /* CoreGraphics.framework in Frameworks */,
|
|
72
|
+
);
|
|
73
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
74
|
+
};
|
|
75
|
+
B7402BE116C26CE70014570E /* Frameworks */ = {
|
|
76
|
+
isa = PBXFrameworksBuildPhase;
|
|
77
|
+
buildActionMask = 2147483647;
|
|
78
|
+
files = (
|
|
79
|
+
B7402BE716C26CE70014570E /* SenTestingKit.framework in Frameworks */,
|
|
80
|
+
B7402BE816C26CE70014570E /* UIKit.framework in Frameworks */,
|
|
81
|
+
B7402BE916C26CE70014570E /* Foundation.framework in Frameworks */,
|
|
82
|
+
);
|
|
83
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
84
|
+
};
|
|
85
|
+
/* End PBXFrameworksBuildPhase section */
|
|
86
|
+
|
|
87
|
+
/* Begin PBXGroup section */
|
|
88
|
+
B7402BB916C26CE70014570E = {
|
|
89
|
+
isa = PBXGroup;
|
|
90
|
+
children = (
|
|
91
|
+
B7402BCE16C26CE70014570E /* <%= config[:target_name] %> */,
|
|
92
|
+
B7402BEC16C26CE70014570E /* <%= config[:tests_target_name] %> */,
|
|
93
|
+
B7402C0016C26F8F0014570E /* Resources */,
|
|
94
|
+
B7402BC716C26CE70014570E /* Frameworks */,
|
|
95
|
+
B7402BC516C26CE70014570E /* Products */,
|
|
96
|
+
);
|
|
97
|
+
sourceTree = "<group>";
|
|
98
|
+
};
|
|
99
|
+
B7402BC516C26CE70014570E /* Products */ = {
|
|
100
|
+
isa = PBXGroup;
|
|
101
|
+
children = (
|
|
102
|
+
B7402BC416C26CE70014570E /* <%= config[:binary_name] %>-debug.app */,
|
|
103
|
+
B7402BE516C26CE70014570E /* <%= config[:binary_name] %>Tests.octest */,
|
|
104
|
+
);
|
|
105
|
+
name = Products;
|
|
106
|
+
sourceTree = "<group>";
|
|
107
|
+
};
|
|
108
|
+
B7402BC716C26CE70014570E /* Frameworks */ = {
|
|
109
|
+
isa = PBXGroup;
|
|
110
|
+
children = (
|
|
111
|
+
B7402BC816C26CE70014570E /* UIKit.framework */,
|
|
112
|
+
B7402BCA16C26CE70014570E /* Foundation.framework */,
|
|
113
|
+
B7402BCC16C26CE70014570E /* CoreGraphics.framework */,
|
|
114
|
+
B7402BE616C26CE70014570E /* SenTestingKit.framework */,
|
|
115
|
+
);
|
|
116
|
+
name = Frameworks;
|
|
117
|
+
sourceTree = "<group>";
|
|
118
|
+
};
|
|
119
|
+
B7402BCE16C26CE70014570E /* <%= config[:target_name] %> */ = {
|
|
120
|
+
isa = PBXGroup;
|
|
121
|
+
children = (
|
|
122
|
+
B7402C2E16C2DD800014570E /* <%= config[:class_prefix] %>AppDelegate.h */,
|
|
123
|
+
B7402C2F16C2DD800014570E /* <%= config[:class_prefix] %>AppDelegate.m */,
|
|
124
|
+
B7402BCF16C26CE70014570E /* Supporting Files */,
|
|
125
|
+
);
|
|
126
|
+
path = "<%= config[:target_name] %>";
|
|
127
|
+
sourceTree = "<group>";
|
|
128
|
+
};
|
|
129
|
+
B7402BCF16C26CE70014570E /* Supporting Files */ = {
|
|
130
|
+
isa = PBXGroup;
|
|
131
|
+
children = (
|
|
132
|
+
B7402C1716C275930014570E /* fw-shared.xcconfig */,
|
|
133
|
+
B7402BD016C26CE70014570E /* <%= config[:project_name] %>-Info.plist */,
|
|
134
|
+
B7402BD116C26CE70014570E /* InfoPlist.strings */,
|
|
135
|
+
B7402BD416C26CE70014570E /* main.m */,
|
|
136
|
+
B7402BD616C26CE70014570E /* <%= config[:project_name] %>-Prefix.pch */,
|
|
137
|
+
B7402C2216C279C00014570E /* Settings.bundle */,
|
|
138
|
+
);
|
|
139
|
+
path = "Supporting Files";
|
|
140
|
+
sourceTree = "<group>";
|
|
141
|
+
};
|
|
142
|
+
B7402BEC16C26CE70014570E /* <%= config[:tests_target_name] %> */ = {
|
|
143
|
+
isa = PBXGroup;
|
|
144
|
+
children = (
|
|
145
|
+
B7402BFD16C26ED80014570E /* <%= config[:project_name] %>Tests.h */,
|
|
146
|
+
B7402BFE16C26ED80014570E /* <%= config[:project_name] %>Tests.m */,
|
|
147
|
+
B7402BED16C26CE70014570E /* Supporting Files */,
|
|
148
|
+
);
|
|
149
|
+
path = "<%= config[:tests_target_name] %>";
|
|
150
|
+
sourceTree = "<group>";
|
|
151
|
+
};
|
|
152
|
+
B7402BED16C26CE70014570E /* Supporting Files */ = {
|
|
153
|
+
isa = PBXGroup;
|
|
154
|
+
children = (
|
|
155
|
+
B7402BEE16C26CE70014570E /* <%= config[:tests_target_name] %>-Info.plist */,
|
|
156
|
+
B7402BEF16C26CE70014570E /* InfoPlist.strings */,
|
|
157
|
+
);
|
|
158
|
+
path = "Supporting Files";
|
|
159
|
+
sourceTree = "<group>";
|
|
160
|
+
};
|
|
161
|
+
B7402C0016C26F8F0014570E /* Resources */ = {
|
|
162
|
+
isa = PBXGroup;
|
|
163
|
+
children = (
|
|
164
|
+
B7402C1116C270FC0014570E /* Default-568h@2x.png */,
|
|
165
|
+
B7402C1216C270FC0014570E /* Default.png */,
|
|
166
|
+
B7402C1316C270FC0014570E /* Default@2x.png */,
|
|
167
|
+
);
|
|
168
|
+
path = Resources;
|
|
169
|
+
sourceTree = "<group>";
|
|
170
|
+
};
|
|
171
|
+
/* End PBXGroup section */
|
|
172
|
+
|
|
173
|
+
/* Begin PBXNativeTarget section */
|
|
174
|
+
B7402BC316C26CE70014570E /* <%= config[:target_name] %> */ = {
|
|
175
|
+
isa = PBXNativeTarget;
|
|
176
|
+
buildConfigurationList = B7402BF716C26CE70014570E /* Build configuration list for PBXNativeTarget "<%= config[:target_name] %>" */;
|
|
177
|
+
buildPhases = (
|
|
178
|
+
B7402BC016C26CE70014570E /* Sources */,
|
|
179
|
+
B7402BC116C26CE70014570E /* Frameworks */,
|
|
180
|
+
B7402BC216C26CE70014570E /* Resources */,
|
|
181
|
+
B71B013B17280F78009B2A61 /* Log build environment */,
|
|
182
|
+
B7402C2116C278DB0014570E /* Set version on settings */,
|
|
183
|
+
B71B013A17280A01009B2A61 /* Bump build number */,
|
|
184
|
+
);
|
|
185
|
+
buildRules = (
|
|
186
|
+
);
|
|
187
|
+
dependencies = (
|
|
188
|
+
);
|
|
189
|
+
name = "<%= config[:target_name] %>";
|
|
190
|
+
productName = "<%= config[:project_name] %>";
|
|
191
|
+
productReference = B7402BC416C26CE70014570E /* <%= config[:binary_name] %>-debug.app */;
|
|
192
|
+
productType = "com.apple.product-type.application";
|
|
193
|
+
};
|
|
194
|
+
B7402BE416C26CE70014570E /* <%= config[:tests_target_name] %> */ = {
|
|
195
|
+
isa = PBXNativeTarget;
|
|
196
|
+
buildConfigurationList = B7402BFA16C26CE70014570E /* Build configuration list for PBXNativeTarget "<%= config[:tests_target_name] %>" */;
|
|
197
|
+
buildPhases = (
|
|
198
|
+
B7402BE016C26CE70014570E /* Sources */,
|
|
199
|
+
B7402BE116C26CE70014570E /* Frameworks */,
|
|
200
|
+
B7402BE216C26CE70014570E /* Resources */,
|
|
201
|
+
B7402BE316C26CE70014570E /* ShellScript */,
|
|
202
|
+
);
|
|
203
|
+
buildRules = (
|
|
204
|
+
);
|
|
205
|
+
dependencies = (
|
|
206
|
+
B7402BEB16C26CE70014570E /* PBXTargetDependency */,
|
|
207
|
+
);
|
|
208
|
+
name = "<%= config[:tests_target_name] %>";
|
|
209
|
+
productName = "<%= config[:project_name] %>Tests";
|
|
210
|
+
productReference = B7402BE516C26CE70014570E /* <%= config[:binary_name] %>Tests.octest */;
|
|
211
|
+
productType = "com.apple.product-type.bundle";
|
|
212
|
+
};
|
|
213
|
+
/* End PBXNativeTarget section */
|
|
214
|
+
|
|
215
|
+
/* Begin PBXProject section */
|
|
216
|
+
B7402BBB16C26CE70014570E /* Project object */ = {
|
|
217
|
+
isa = PBXProject;
|
|
218
|
+
attributes = {
|
|
219
|
+
CLASSPREFIX = PRF;
|
|
220
|
+
LastUpgradeCheck = 0450;
|
|
221
|
+
ORGANIZATIONNAME = "<%= config[:Organization_Name] %>";
|
|
222
|
+
};
|
|
223
|
+
buildConfigurationList = B7402BBE16C26CE70014570E /* Build configuration list for PBXProject "<%= config[:project_name] %>" */;
|
|
224
|
+
compatibilityVersion = "Xcode 3.2";
|
|
225
|
+
developmentRegion = English;
|
|
226
|
+
hasScannedForEncodings = 0;
|
|
227
|
+
knownRegions = (
|
|
228
|
+
en,
|
|
229
|
+
);
|
|
230
|
+
mainGroup = B7402BB916C26CE70014570E;
|
|
231
|
+
productRefGroup = B7402BC516C26CE70014570E /* Products */;
|
|
232
|
+
projectDirPath = "";
|
|
233
|
+
projectRoot = "";
|
|
234
|
+
targets = (
|
|
235
|
+
B7402BC316C26CE70014570E /* <%= config[:target_name] %> */,
|
|
236
|
+
B7402BE416C26CE70014570E /* <%= config[:tests_target_name] %> */,
|
|
237
|
+
);
|
|
238
|
+
};
|
|
239
|
+
/* End PBXProject section */
|
|
240
|
+
|
|
241
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
242
|
+
B7402BC216C26CE70014570E /* Resources */ = {
|
|
243
|
+
isa = PBXResourcesBuildPhase;
|
|
244
|
+
buildActionMask = 2147483647;
|
|
245
|
+
files = (
|
|
246
|
+
B7402BD316C26CE70014570E /* InfoPlist.strings in Resources */,
|
|
247
|
+
B7402C1416C270FC0014570E /* Default-568h@2x.png in Resources */,
|
|
248
|
+
B7402C1516C270FC0014570E /* Default.png in Resources */,
|
|
249
|
+
B7402C1616C270FC0014570E /* Default@2x.png in Resources */,
|
|
250
|
+
B7402C1816C275940014570E /* fw-shared.xcconfig in Resources */,
|
|
251
|
+
B7402C2316C279C00014570E /* Settings.bundle in Resources */,
|
|
252
|
+
);
|
|
253
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
254
|
+
};
|
|
255
|
+
B7402BE216C26CE70014570E /* Resources */ = {
|
|
256
|
+
isa = PBXResourcesBuildPhase;
|
|
257
|
+
buildActionMask = 2147483647;
|
|
258
|
+
files = (
|
|
259
|
+
B7402BF116C26CE70014570E /* InfoPlist.strings in Resources */,
|
|
260
|
+
B7402C1916C275940014570E /* fw-shared.xcconfig in Resources */,
|
|
261
|
+
B7402C2416C279C00014570E /* Settings.bundle in Resources */,
|
|
262
|
+
);
|
|
263
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
264
|
+
};
|
|
265
|
+
/* End PBXResourcesBuildPhase section */
|
|
266
|
+
|
|
267
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
268
|
+
B71B013A17280A01009B2A61 /* Bump build number */ = {
|
|
269
|
+
isa = PBXShellScriptBuildPhase;
|
|
270
|
+
buildActionMask = 2147483647;
|
|
271
|
+
files = (
|
|
272
|
+
);
|
|
273
|
+
inputPaths = (
|
|
274
|
+
);
|
|
275
|
+
name = "Bump build number";
|
|
276
|
+
outputPaths = (
|
|
277
|
+
);
|
|
278
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
279
|
+
shellPath = /bin/sh;
|
|
280
|
+
shellScript = "if [ \"$CONFIGURATION\" != \"Release\" ]\nthen /usr/bin/perl -pe 's/(BUILD_NUMBER )(\\d+)/$1.($2+1)/eg' -i \"$INFOPLIST_PREFIX_HEADER\"\nfi";
|
|
281
|
+
};
|
|
282
|
+
B71B013B17280F78009B2A61 /* Log build environment */ = {
|
|
283
|
+
isa = PBXShellScriptBuildPhase;
|
|
284
|
+
buildActionMask = 2147483647;
|
|
285
|
+
files = (
|
|
286
|
+
);
|
|
287
|
+
inputPaths = (
|
|
288
|
+
);
|
|
289
|
+
name = "Log build environment";
|
|
290
|
+
outputPaths = (
|
|
291
|
+
);
|
|
292
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
293
|
+
shellPath = /bin/sh;
|
|
294
|
+
shellScript = "LOG=\"$CONFIGURATION_BUILD_DIR/env.log\"\n[ -d `dirname $LOG` ] || mkdir -p `dirname $LOG`\n/bin/rm -f $LOG\necho >> $LOG\necho \"CODE_SIGN_IDENTITY: $CODE_SIGN_IDENTITY\" >> $LOG\necho \"WRAPPER_NAME: $WRAPPER_NAME\" >> $LOG\necho \"PRODUCT_NAME: $PRODUCT_NAME\" >> $LOG\necho \"ARCHIVE_PATH: $ARCHIVE_PATH\" >> $LOG\necho \"ARCHIVE_DSYMS_PATH: $ARCHIVE_DSYMS_PATH\" >> $LOG\necho \"ARCHIVE_PRODUCTS_PATH: $ARCHIVE_PRODUCTS_PATH\" >> $LOG\necho \"DWARF_DSYM_FILE_NAME: $DWARF_DSYM_FILE_NAME\" >> $LOG\necho \"INSTALL_PATH: $INSTALL_PATH\" >> $LOG\n";
|
|
295
|
+
};
|
|
296
|
+
B7402BE316C26CE70014570E /* ShellScript */ = {
|
|
297
|
+
isa = PBXShellScriptBuildPhase;
|
|
298
|
+
buildActionMask = 2147483647;
|
|
299
|
+
files = (
|
|
300
|
+
);
|
|
301
|
+
inputPaths = (
|
|
302
|
+
);
|
|
303
|
+
outputPaths = (
|
|
304
|
+
);
|
|
305
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
306
|
+
shellPath = /bin/sh;
|
|
307
|
+
shellScript = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n";
|
|
308
|
+
};
|
|
309
|
+
B7402C2116C278DB0014570E /* Set version on settings */ = {
|
|
310
|
+
isa = PBXShellScriptBuildPhase;
|
|
311
|
+
buildActionMask = 2147483647;
|
|
312
|
+
files = (
|
|
313
|
+
);
|
|
314
|
+
inputPaths = (
|
|
315
|
+
);
|
|
316
|
+
name = "Set version on settings";
|
|
317
|
+
outputPaths = (
|
|
318
|
+
);
|
|
319
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
320
|
+
shellPath = /bin/sh;
|
|
321
|
+
shellScript = "VERSION_BINARY=\"$SRCROOT/<%= config[:target_name] %>/Supporting Files/version.sh\"\n\"${VERSION_BINARY}\" --set --plist-path \"${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH}\" --quiet\n\nSETTING_ROOT_PLIST=\"${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Settings.bundle/Root.plist\"\nVERSION_NUMBER=`\"${VERSION_BINARY}\" --terse`\nDATE=`date \"+%Y%m%d%H%M\"`\n/usr/libexec/PlistBuddy -c \"Set :PreferenceSpecifiers:1:DefaultValue $DATE\" ${SETTING_ROOT_PLIST}\n/usr/libexec/PlistBuddy -c \"Set :PreferenceSpecifiers:2:DefaultValue $VERSION_NUMBER\" ${SETTING_ROOT_PLIST}\n\nif [[ \"$VERSION_NUMBER\" == *dirty* ]]\nthen\n echo \"Whiteboard-Version\":1: warning: \"Your git working directory is dirty while archiving the app. The version number will contain the string _dirty_\" 1>&2\nfi\n";
|
|
322
|
+
};
|
|
323
|
+
/* End PBXShellScriptBuildPhase section */
|
|
324
|
+
|
|
325
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
326
|
+
B7402BC016C26CE70014570E /* Sources */ = {
|
|
327
|
+
isa = PBXSourcesBuildPhase;
|
|
328
|
+
buildActionMask = 2147483647;
|
|
329
|
+
files = (
|
|
330
|
+
B7402BD516C26CE70014570E /* main.m in Sources */,
|
|
331
|
+
B7402C3016C2DD800014570E /* <%= config[:class_prefix] %>AppDelegate.m in Sources */,
|
|
332
|
+
);
|
|
333
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
334
|
+
};
|
|
335
|
+
B7402BE016C26CE70014570E /* Sources */ = {
|
|
336
|
+
isa = PBXSourcesBuildPhase;
|
|
337
|
+
buildActionMask = 2147483647;
|
|
338
|
+
files = (
|
|
339
|
+
B7402BFF16C26ED80014570E /* <%= config[:project_name] %>Tests.m in Sources */,
|
|
340
|
+
);
|
|
341
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
342
|
+
};
|
|
343
|
+
/* End PBXSourcesBuildPhase section */
|
|
344
|
+
|
|
345
|
+
/* Begin PBXTargetDependency section */
|
|
346
|
+
B7402BEB16C26CE70014570E /* PBXTargetDependency */ = {
|
|
347
|
+
isa = PBXTargetDependency;
|
|
348
|
+
target = B7402BC316C26CE70014570E /* <%= config[:target_name] %> */;
|
|
349
|
+
targetProxy = B7402BEA16C26CE70014570E /* PBXContainerItemProxy */;
|
|
350
|
+
};
|
|
351
|
+
/* End PBXTargetDependency section */
|
|
352
|
+
|
|
353
|
+
/* Begin PBXVariantGroup section */
|
|
354
|
+
B7402BD116C26CE70014570E /* InfoPlist.strings */ = {
|
|
355
|
+
isa = PBXVariantGroup;
|
|
356
|
+
children = (
|
|
357
|
+
B7402BD216C26CE70014570E /* en */,
|
|
358
|
+
);
|
|
359
|
+
name = InfoPlist.strings;
|
|
360
|
+
sourceTree = "<group>";
|
|
361
|
+
};
|
|
362
|
+
B7402BEF16C26CE70014570E /* InfoPlist.strings */ = {
|
|
363
|
+
isa = PBXVariantGroup;
|
|
364
|
+
children = (
|
|
365
|
+
B7402BF016C26CE70014570E /* en */,
|
|
366
|
+
);
|
|
367
|
+
name = InfoPlist.strings;
|
|
368
|
+
sourceTree = "<group>";
|
|
369
|
+
};
|
|
370
|
+
/* End PBXVariantGroup section */
|
|
371
|
+
|
|
372
|
+
/* Begin XCBuildConfiguration section */
|
|
373
|
+
B71B013617280481009B2A61 /* Testing */ = {
|
|
374
|
+
isa = XCBuildConfiguration;
|
|
375
|
+
baseConfigurationReference = B7402C1716C275930014570E /* fw-shared.xcconfig */;
|
|
376
|
+
buildSettings = {
|
|
377
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
378
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
379
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
380
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
381
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
382
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
383
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
384
|
+
COPY_PHASE_STRIP = YES;
|
|
385
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
386
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
387
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
388
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
389
|
+
"TESTING=1",
|
|
390
|
+
"$(inherited)",
|
|
391
|
+
);
|
|
392
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
393
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
|
394
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
|
395
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
396
|
+
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
|
|
397
|
+
SDKROOT = iphoneos;
|
|
398
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
399
|
+
VALIDATE_PRODUCT = YES;
|
|
400
|
+
};
|
|
401
|
+
name = Testing;
|
|
402
|
+
};
|
|
403
|
+
B71B013717280481009B2A61 /* Testing */ = {
|
|
404
|
+
isa = XCBuildConfiguration;
|
|
405
|
+
buildSettings = {
|
|
406
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
|
407
|
+
GCC_PREFIX_HEADER = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Prefix.pch";
|
|
408
|
+
INFOPLIST_FILE = "$(SRCROOT)/<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Info.plist";
|
|
409
|
+
INFOPLIST_PREFIX_HEADER = "$(SRCROOT)/<%= config[:target_name] %>/Supporting Files/info.plist.h";
|
|
410
|
+
INFOPLIST_PREPROCESS = YES;
|
|
411
|
+
PRODUCT_NAME = "<%= config[:binary_name] %>-test";
|
|
412
|
+
WRAPPER_EXTENSION = app;
|
|
413
|
+
};
|
|
414
|
+
name = Testing;
|
|
415
|
+
};
|
|
416
|
+
B71B013817280481009B2A61 /* Testing */ = {
|
|
417
|
+
isa = XCBuildConfiguration;
|
|
418
|
+
buildSettings = {
|
|
419
|
+
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/<%= config[:binary_name] %>.app/<%= config[:binary_name] %>";
|
|
420
|
+
FRAMEWORK_SEARCH_PATHS = (
|
|
421
|
+
"\"$(SDKROOT)/Developer/Library/Frameworks\"",
|
|
422
|
+
"\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"",
|
|
423
|
+
);
|
|
424
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
|
425
|
+
GCC_PREFIX_HEADER = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Prefix.pch";
|
|
426
|
+
INFOPLIST_FILE = "<%= config[:tests_target_name] %>/Supporting Files/<%= config[:tests_target_name] %>-Info.plist";
|
|
427
|
+
PRODUCT_NAME = "<%= config[:binary_name] %>Tests";
|
|
428
|
+
TEST_HOST = "$(BUNDLE_LOADER)";
|
|
429
|
+
WRAPPER_EXTENSION = octest;
|
|
430
|
+
};
|
|
431
|
+
name = Testing;
|
|
432
|
+
};
|
|
433
|
+
B7402BF516C26CE70014570E /* Debug */ = {
|
|
434
|
+
isa = XCBuildConfiguration;
|
|
435
|
+
baseConfigurationReference = B7402C1716C275930014570E /* fw-shared.xcconfig */;
|
|
436
|
+
buildSettings = {
|
|
437
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
438
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
439
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
440
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
441
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
442
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
443
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
444
|
+
COPY_PHASE_STRIP = NO;
|
|
445
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
446
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
447
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
448
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
449
|
+
"DEBUG=1",
|
|
450
|
+
"$(inherited)",
|
|
451
|
+
);
|
|
452
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
453
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
|
454
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
|
455
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
456
|
+
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
|
|
457
|
+
SDKROOT = iphoneos;
|
|
458
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
459
|
+
};
|
|
460
|
+
name = Debug;
|
|
461
|
+
};
|
|
462
|
+
B7402BF616C26CE70014570E /* Release */ = {
|
|
463
|
+
isa = XCBuildConfiguration;
|
|
464
|
+
baseConfigurationReference = B7402C1716C275930014570E /* fw-shared.xcconfig */;
|
|
465
|
+
buildSettings = {
|
|
466
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
467
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
468
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
469
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
470
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
471
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
472
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
473
|
+
COPY_PHASE_STRIP = YES;
|
|
474
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
475
|
+
GCC_PREPROCESSOR_DEFINITIONS = "APPSTORE=1";
|
|
476
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
|
477
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
|
478
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
479
|
+
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
|
|
480
|
+
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
|
|
481
|
+
SDKROOT = iphoneos;
|
|
482
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
483
|
+
VALIDATE_PRODUCT = YES;
|
|
484
|
+
};
|
|
485
|
+
name = Release;
|
|
486
|
+
};
|
|
487
|
+
B7402BF816C26CE70014570E /* Debug */ = {
|
|
488
|
+
isa = XCBuildConfiguration;
|
|
489
|
+
buildSettings = {
|
|
490
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
|
491
|
+
GCC_PREFIX_HEADER = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Prefix.pch";
|
|
492
|
+
INFOPLIST_FILE = "$(SRCROOT)/<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Info.plist";
|
|
493
|
+
INFOPLIST_PREFIX_HEADER = "$(SRCROOT)/<%= config[:target_name] %>/Supporting Files/info.plist.h";
|
|
494
|
+
INFOPLIST_PREPROCESS = YES;
|
|
495
|
+
PRODUCT_NAME = "<%= config[:binary_name] %>-debug";
|
|
496
|
+
WRAPPER_EXTENSION = app;
|
|
497
|
+
};
|
|
498
|
+
name = Debug;
|
|
499
|
+
};
|
|
500
|
+
B7402BF916C26CE70014570E /* Release */ = {
|
|
501
|
+
isa = XCBuildConfiguration;
|
|
502
|
+
buildSettings = {
|
|
503
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
|
504
|
+
GCC_PREFIX_HEADER = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Prefix.pch";
|
|
505
|
+
INFOPLIST_FILE = "$(SRCROOT)/<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Info.plist";
|
|
506
|
+
INFOPLIST_PREFIX_HEADER = "$(SRCROOT)/<%= config[:target_name] %>/Supporting Files/info.plist.h";
|
|
507
|
+
INFOPLIST_PREPROCESS = YES;
|
|
508
|
+
PRODUCT_NAME = "<%= config[:binary_name] %>";
|
|
509
|
+
WRAPPER_EXTENSION = app;
|
|
510
|
+
};
|
|
511
|
+
name = Release;
|
|
512
|
+
};
|
|
513
|
+
B7402BFB16C26CE70014570E /* Debug */ = {
|
|
514
|
+
isa = XCBuildConfiguration;
|
|
515
|
+
buildSettings = {
|
|
516
|
+
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/<%= config[:binary_name] %>.app/<%= config[:binary_name] %>";
|
|
517
|
+
FRAMEWORK_SEARCH_PATHS = (
|
|
518
|
+
"\"$(SDKROOT)/Developer/Library/Frameworks\"",
|
|
519
|
+
"\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"",
|
|
520
|
+
);
|
|
521
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
|
522
|
+
GCC_PREFIX_HEADER = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Prefix.pch";
|
|
523
|
+
INFOPLIST_FILE = "<%= config[:tests_target_name] %>/Supporting Files/<%= config[:tests_target_name] %>-Info.plist";
|
|
524
|
+
PRODUCT_NAME = "<%= config[:binary_name] %>Tests";
|
|
525
|
+
TEST_HOST = "$(BUNDLE_LOADER)";
|
|
526
|
+
WRAPPER_EXTENSION = octest;
|
|
527
|
+
};
|
|
528
|
+
name = Debug;
|
|
529
|
+
};
|
|
530
|
+
B7402BFC16C26CE70014570E /* Release */ = {
|
|
531
|
+
isa = XCBuildConfiguration;
|
|
532
|
+
buildSettings = {
|
|
533
|
+
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/<%= config[:binary_name] %>.app/<%= config[:binary_name] %>";
|
|
534
|
+
FRAMEWORK_SEARCH_PATHS = (
|
|
535
|
+
"\"$(SDKROOT)/Developer/Library/Frameworks\"",
|
|
536
|
+
"\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"",
|
|
537
|
+
);
|
|
538
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
|
539
|
+
GCC_PREFIX_HEADER = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Prefix.pch";
|
|
540
|
+
INFOPLIST_FILE = "<%= config[:tests_target_name] %>/Supporting Files/<%= config[:tests_target_name] %>-Info.plist";
|
|
541
|
+
PRODUCT_NAME = "<%= config[:binary_name] %>Tests";
|
|
542
|
+
TEST_HOST = "$(BUNDLE_LOADER)";
|
|
543
|
+
WRAPPER_EXTENSION = octest;
|
|
544
|
+
};
|
|
545
|
+
name = Release;
|
|
546
|
+
};
|
|
547
|
+
/* End XCBuildConfiguration section */
|
|
548
|
+
|
|
549
|
+
/* Begin XCConfigurationList section */
|
|
550
|
+
B7402BBE16C26CE70014570E /* Build configuration list for PBXProject "<%= config[:project_name] %>" */ = {
|
|
551
|
+
isa = XCConfigurationList;
|
|
552
|
+
buildConfigurations = (
|
|
553
|
+
B7402BF516C26CE70014570E /* Debug */,
|
|
554
|
+
B71B013617280481009B2A61 /* Testing */,
|
|
555
|
+
B7402BF616C26CE70014570E /* Release */,
|
|
556
|
+
);
|
|
557
|
+
defaultConfigurationIsVisible = 0;
|
|
558
|
+
defaultConfigurationName = Release;
|
|
559
|
+
};
|
|
560
|
+
B7402BF716C26CE70014570E /* Build configuration list for PBXNativeTarget "<%= config[:target_name] %>" */ = {
|
|
561
|
+
isa = XCConfigurationList;
|
|
562
|
+
buildConfigurations = (
|
|
563
|
+
B7402BF816C26CE70014570E /* Debug */,
|
|
564
|
+
B71B013717280481009B2A61 /* Testing */,
|
|
565
|
+
B7402BF916C26CE70014570E /* Release */,
|
|
566
|
+
);
|
|
567
|
+
defaultConfigurationIsVisible = 0;
|
|
568
|
+
defaultConfigurationName = Release;
|
|
569
|
+
};
|
|
570
|
+
B7402BFA16C26CE70014570E /* Build configuration list for PBXNativeTarget "<%= config[:tests_target_name] %>" */ = {
|
|
571
|
+
isa = XCConfigurationList;
|
|
572
|
+
buildConfigurations = (
|
|
573
|
+
B7402BFB16C26CE70014570E /* Debug */,
|
|
574
|
+
B71B013817280481009B2A61 /* Testing */,
|
|
575
|
+
B7402BFC16C26CE70014570E /* Release */,
|
|
576
|
+
);
|
|
577
|
+
defaultConfigurationIsVisible = 0;
|
|
578
|
+
defaultConfigurationName = Release;
|
|
579
|
+
};
|
|
580
|
+
/* End XCConfigurationList section */
|
|
581
|
+
};
|
|
582
|
+
rootObject = B7402BBB16C26CE70014570E /* Project object */;
|
|
583
|
+
}
|