xcake 0.7.1 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +11 -3
  3. data/CHANGELOG.md +15 -0
  4. data/README.md +3 -1
  5. data/bin/xcake +0 -1
  6. data/docs/Cakefile.md +82 -1
  7. data/docs/Xcode Project Support.md +5 -0
  8. data/example/app/CakeMania/CakeMania.xcodeproj/project.pbxproj +973 -0
  9. data/example/app/CakeMania/CakeMania.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  10. data/example/app/CakeMania/CakeMania.xcodeproj/project.xcworkspace/xcuserdata/maxim.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  11. data/example/app/CakeMania/CakeMania.xcodeproj/xcshareddata/xcschemes/CakeMania-AppStore.xcscheme +91 -0
  12. data/example/app/CakeMania/CakeMania.xcodeproj/xcshareddata/xcschemes/CakeMania-Debug.xcscheme +91 -0
  13. data/example/app/CakeMania/CakeMania.xcodeproj/xcshareddata/xcschemes/CakeMania-Production.xcscheme +91 -0
  14. data/example/app/CakeMania/CakeMania.xcodeproj/xcshareddata/xcschemes/CakeMania-RC.xcscheme +91 -0
  15. data/example/app/CakeMania/CakeMania.xcodeproj/xcshareddata/xcschemes/CakeMania-Staging.xcscheme +91 -0
  16. data/example/app/CakeMania/CakeMania.xcodeproj/xcuserdata/maxim.xcuserdatad/xcschemes/CakeManiaTst.xcscheme +56 -0
  17. data/example/app/CakeMania/CakeMania.xcodeproj/xcuserdata/maxim.xcuserdatad/xcschemes/CakeManiaUITst.xcscheme +56 -0
  18. data/example/app/CakeMania/CakeMania.xcodeproj/xcuserdata/maxim.xcuserdatad/xcschemes/xcschememanagement.plist +72 -0
  19. data/{docs/Sample → example/app/CakeMania}/Cakefile +80 -47
  20. data/example/app/CakeMania/Info/CakeMania.plist +38 -0
  21. data/example/app/CakeMania/Info/CakeManiaTst.plist +22 -0
  22. data/example/app/CakeMania/Info/CakeManiaUITst.plist +22 -0
  23. data/example/app/CakeMania/Res/CakeMania-test.entitlements +10 -0
  24. data/example/app/CakeMania/Res/CakeMania.entitlements +10 -0
  25. data/example/app/CakeMania/Res/CakeMania.xcassets/AppIcon.appiconset/Contents.json +48 -0
  26. data/example/app/CakeMania/Src/AppDelegate.swift +46 -0
  27. data/example/app/CakeMania/Src/Base.lproj/LaunchScreen.storyboard +27 -0
  28. data/example/app/CakeMania/Src/Base.lproj/Main.storyboard +26 -0
  29. data/example/app/CakeMania/Src/ObjC/CakeMania-Bridging-Header.h +3 -0
  30. data/example/app/CakeMania/Src/ObjC/Prefix.pch +14 -0
  31. data/example/app/CakeMania/Src/ViewController.swift +25 -0
  32. data/example/app/CakeMania/Tst/Main.swift +36 -0
  33. data/example/app/CakeMania/UITst/Main.swift +36 -0
  34. data/example/framework/Cakefile +133 -0
  35. data/gemfiles/Gemfile.xcodeproj-1.3.x +5 -0
  36. data/gemfiles/Gemfile.xcodeproj-1.4.x +5 -0
  37. data/gemfiles/Gemfile.xcodeproj-edge +5 -0
  38. data/lib/xcake/build_phase/headers_build_phase.rb +47 -0
  39. data/lib/xcake/build_phase/shell_script_build_phase.rb +24 -0
  40. data/lib/xcake/build_phase.rb +36 -0
  41. data/lib/xcake/constants.rb +82 -0
  42. data/lib/xcake/context/xcodeproj_context.rb +10 -0
  43. data/lib/xcake/context.rb +24 -0
  44. data/lib/xcake/generator/scheme_generator.rb +13 -2
  45. data/lib/xcake/generator/target_build_phase_generator.rb +11 -3
  46. data/lib/xcake/generator/target_dependency_generator.rb +1 -1
  47. data/lib/xcake/generator/target_file_reference_generator.rb +4 -5
  48. data/lib/xcake/generator/target_link_generator.rb +25 -0
  49. data/lib/xcake/informative.rb +0 -1
  50. data/lib/xcake/path_classifier.rb +5 -5
  51. data/lib/xcake/project/sugar.rb +7 -5
  52. data/lib/xcake/project.rb +0 -1
  53. data/lib/xcake/target/configurable.rb +2 -6
  54. data/lib/xcake/target/sugar.rb +28 -3
  55. data/lib/xcake/target.rb +34 -18
  56. data/lib/xcake/ui.rb +1 -4
  57. data/lib/xcake/version.rb +1 -1
  58. data/lib/xcake/xcode/project.rb +25 -13
  59. data/lib/xcake/xcode/scheme.rb +3 -0
  60. data/lib/xcake/xcode/scheme_list.rb +0 -23
  61. data/lib/xcake/xcodeproj_ext/PBXGroup.rb +3 -3
  62. data/lib/xcake/xcodeproj_ext/PBXNativeTarget.rb +0 -1
  63. data/lib/xcake.rb +10 -5
  64. data/rubocop.yml +0 -4
  65. data/xcake.gemspec +8 -7
  66. metadata +112 -80
  67. data/lib/xcake/generator/target_custom_build_phase_generator.rb +0 -16
  68. data/lib/xcake/shell_script_build_phase.rb +0 -15
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1,91 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "0700"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <BuildActionEntries>
9
+ <BuildActionEntry
10
+ buildForTesting = "NO"
11
+ buildForRunning = "YES"
12
+ buildForProfiling = "YES"
13
+ buildForArchiving = "YES"
14
+ buildForAnalyzing = "YES">
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
18
+ BuildableName = "CakeMania.app"
19
+ BlueprintName = "CakeMania"
20
+ ReferencedContainer = "container:CakeMania.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ </BuildActionEntries>
24
+ </BuildAction>
25
+ <TestAction
26
+ buildConfiguration = "AppStore"
27
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
+ shouldUseLaunchSchemeArgsEnv = "YES">
30
+ <Testables>
31
+ </Testables>
32
+ <MacroExpansion>
33
+ <BuildableReference
34
+ BuildableIdentifier = "primary"
35
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
36
+ BuildableName = "CakeMania.app"
37
+ BlueprintName = "CakeMania"
38
+ ReferencedContainer = "container:CakeMania.xcodeproj">
39
+ </BuildableReference>
40
+ </MacroExpansion>
41
+ <AdditionalOptions>
42
+ </AdditionalOptions>
43
+ </TestAction>
44
+ <LaunchAction
45
+ buildConfiguration = "AppStore"
46
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
47
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
48
+ launchStyle = "0"
49
+ useCustomWorkingDirectory = "NO"
50
+ ignoresPersistentStateOnLaunch = "NO"
51
+ debugDocumentVersioning = "YES"
52
+ debugServiceExtension = "internal"
53
+ allowLocationSimulation = "YES">
54
+ <BuildableProductRunnable
55
+ runnableDebuggingMode = "0">
56
+ <BuildableReference
57
+ BuildableIdentifier = "primary"
58
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
59
+ BuildableName = "CakeMania.app"
60
+ BlueprintName = "CakeMania"
61
+ ReferencedContainer = "container:CakeMania.xcodeproj">
62
+ </BuildableReference>
63
+ </BuildableProductRunnable>
64
+ <AdditionalOptions>
65
+ </AdditionalOptions>
66
+ </LaunchAction>
67
+ <ProfileAction
68
+ buildConfiguration = "AppStore"
69
+ shouldUseLaunchSchemeArgsEnv = "YES"
70
+ savedToolIdentifier = ""
71
+ useCustomWorkingDirectory = "NO"
72
+ debugDocumentVersioning = "YES">
73
+ <BuildableProductRunnable
74
+ runnableDebuggingMode = "0">
75
+ <BuildableReference
76
+ BuildableIdentifier = "primary"
77
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
78
+ BuildableName = "CakeMania.app"
79
+ BlueprintName = "CakeMania"
80
+ ReferencedContainer = "container:CakeMania.xcodeproj">
81
+ </BuildableReference>
82
+ </BuildableProductRunnable>
83
+ </ProfileAction>
84
+ <AnalyzeAction
85
+ buildConfiguration = "AppStore">
86
+ </AnalyzeAction>
87
+ <ArchiveAction
88
+ buildConfiguration = "AppStore"
89
+ revealArchiveInOrganizer = "YES">
90
+ </ArchiveAction>
91
+ </Scheme>
@@ -0,0 +1,91 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "0700"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <BuildActionEntries>
9
+ <BuildActionEntry
10
+ buildForTesting = "NO"
11
+ buildForRunning = "YES"
12
+ buildForProfiling = "YES"
13
+ buildForArchiving = "YES"
14
+ buildForAnalyzing = "YES">
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
18
+ BuildableName = "CakeMania.app"
19
+ BlueprintName = "CakeMania"
20
+ ReferencedContainer = "container:CakeMania.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ </BuildActionEntries>
24
+ </BuildAction>
25
+ <TestAction
26
+ buildConfiguration = "Debug"
27
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
+ shouldUseLaunchSchemeArgsEnv = "YES">
30
+ <Testables>
31
+ </Testables>
32
+ <MacroExpansion>
33
+ <BuildableReference
34
+ BuildableIdentifier = "primary"
35
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
36
+ BuildableName = "CakeMania.app"
37
+ BlueprintName = "CakeMania"
38
+ ReferencedContainer = "container:CakeMania.xcodeproj">
39
+ </BuildableReference>
40
+ </MacroExpansion>
41
+ <AdditionalOptions>
42
+ </AdditionalOptions>
43
+ </TestAction>
44
+ <LaunchAction
45
+ buildConfiguration = "Debug"
46
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
47
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
48
+ launchStyle = "0"
49
+ useCustomWorkingDirectory = "NO"
50
+ ignoresPersistentStateOnLaunch = "NO"
51
+ debugDocumentVersioning = "YES"
52
+ debugServiceExtension = "internal"
53
+ allowLocationSimulation = "YES">
54
+ <BuildableProductRunnable
55
+ runnableDebuggingMode = "0">
56
+ <BuildableReference
57
+ BuildableIdentifier = "primary"
58
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
59
+ BuildableName = "CakeMania.app"
60
+ BlueprintName = "CakeMania"
61
+ ReferencedContainer = "container:CakeMania.xcodeproj">
62
+ </BuildableReference>
63
+ </BuildableProductRunnable>
64
+ <AdditionalOptions>
65
+ </AdditionalOptions>
66
+ </LaunchAction>
67
+ <ProfileAction
68
+ buildConfiguration = "Debug"
69
+ shouldUseLaunchSchemeArgsEnv = "YES"
70
+ savedToolIdentifier = ""
71
+ useCustomWorkingDirectory = "NO"
72
+ debugDocumentVersioning = "YES">
73
+ <BuildableProductRunnable
74
+ runnableDebuggingMode = "0">
75
+ <BuildableReference
76
+ BuildableIdentifier = "primary"
77
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
78
+ BuildableName = "CakeMania.app"
79
+ BlueprintName = "CakeMania"
80
+ ReferencedContainer = "container:CakeMania.xcodeproj">
81
+ </BuildableReference>
82
+ </BuildableProductRunnable>
83
+ </ProfileAction>
84
+ <AnalyzeAction
85
+ buildConfiguration = "Debug">
86
+ </AnalyzeAction>
87
+ <ArchiveAction
88
+ buildConfiguration = "Debug"
89
+ revealArchiveInOrganizer = "YES">
90
+ </ArchiveAction>
91
+ </Scheme>
@@ -0,0 +1,91 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "0700"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <BuildActionEntries>
9
+ <BuildActionEntry
10
+ buildForTesting = "NO"
11
+ buildForRunning = "YES"
12
+ buildForProfiling = "YES"
13
+ buildForArchiving = "YES"
14
+ buildForAnalyzing = "YES">
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
18
+ BuildableName = "CakeMania.app"
19
+ BlueprintName = "CakeMania"
20
+ ReferencedContainer = "container:CakeMania.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ </BuildActionEntries>
24
+ </BuildAction>
25
+ <TestAction
26
+ buildConfiguration = "Production"
27
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
+ shouldUseLaunchSchemeArgsEnv = "YES">
30
+ <Testables>
31
+ </Testables>
32
+ <MacroExpansion>
33
+ <BuildableReference
34
+ BuildableIdentifier = "primary"
35
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
36
+ BuildableName = "CakeMania.app"
37
+ BlueprintName = "CakeMania"
38
+ ReferencedContainer = "container:CakeMania.xcodeproj">
39
+ </BuildableReference>
40
+ </MacroExpansion>
41
+ <AdditionalOptions>
42
+ </AdditionalOptions>
43
+ </TestAction>
44
+ <LaunchAction
45
+ buildConfiguration = "Production"
46
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
47
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
48
+ launchStyle = "0"
49
+ useCustomWorkingDirectory = "NO"
50
+ ignoresPersistentStateOnLaunch = "NO"
51
+ debugDocumentVersioning = "YES"
52
+ debugServiceExtension = "internal"
53
+ allowLocationSimulation = "YES">
54
+ <BuildableProductRunnable
55
+ runnableDebuggingMode = "0">
56
+ <BuildableReference
57
+ BuildableIdentifier = "primary"
58
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
59
+ BuildableName = "CakeMania.app"
60
+ BlueprintName = "CakeMania"
61
+ ReferencedContainer = "container:CakeMania.xcodeproj">
62
+ </BuildableReference>
63
+ </BuildableProductRunnable>
64
+ <AdditionalOptions>
65
+ </AdditionalOptions>
66
+ </LaunchAction>
67
+ <ProfileAction
68
+ buildConfiguration = "Production"
69
+ shouldUseLaunchSchemeArgsEnv = "YES"
70
+ savedToolIdentifier = ""
71
+ useCustomWorkingDirectory = "NO"
72
+ debugDocumentVersioning = "YES">
73
+ <BuildableProductRunnable
74
+ runnableDebuggingMode = "0">
75
+ <BuildableReference
76
+ BuildableIdentifier = "primary"
77
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
78
+ BuildableName = "CakeMania.app"
79
+ BlueprintName = "CakeMania"
80
+ ReferencedContainer = "container:CakeMania.xcodeproj">
81
+ </BuildableReference>
82
+ </BuildableProductRunnable>
83
+ </ProfileAction>
84
+ <AnalyzeAction
85
+ buildConfiguration = "Production">
86
+ </AnalyzeAction>
87
+ <ArchiveAction
88
+ buildConfiguration = "Production"
89
+ revealArchiveInOrganizer = "YES">
90
+ </ArchiveAction>
91
+ </Scheme>
@@ -0,0 +1,91 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "0700"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <BuildActionEntries>
9
+ <BuildActionEntry
10
+ buildForTesting = "NO"
11
+ buildForRunning = "YES"
12
+ buildForProfiling = "YES"
13
+ buildForArchiving = "YES"
14
+ buildForAnalyzing = "YES">
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
18
+ BuildableName = "CakeMania.app"
19
+ BlueprintName = "CakeMania"
20
+ ReferencedContainer = "container:CakeMania.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ </BuildActionEntries>
24
+ </BuildAction>
25
+ <TestAction
26
+ buildConfiguration = "RC"
27
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
+ shouldUseLaunchSchemeArgsEnv = "YES">
30
+ <Testables>
31
+ </Testables>
32
+ <MacroExpansion>
33
+ <BuildableReference
34
+ BuildableIdentifier = "primary"
35
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
36
+ BuildableName = "CakeMania.app"
37
+ BlueprintName = "CakeMania"
38
+ ReferencedContainer = "container:CakeMania.xcodeproj">
39
+ </BuildableReference>
40
+ </MacroExpansion>
41
+ <AdditionalOptions>
42
+ </AdditionalOptions>
43
+ </TestAction>
44
+ <LaunchAction
45
+ buildConfiguration = "RC"
46
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
47
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
48
+ launchStyle = "0"
49
+ useCustomWorkingDirectory = "NO"
50
+ ignoresPersistentStateOnLaunch = "NO"
51
+ debugDocumentVersioning = "YES"
52
+ debugServiceExtension = "internal"
53
+ allowLocationSimulation = "YES">
54
+ <BuildableProductRunnable
55
+ runnableDebuggingMode = "0">
56
+ <BuildableReference
57
+ BuildableIdentifier = "primary"
58
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
59
+ BuildableName = "CakeMania.app"
60
+ BlueprintName = "CakeMania"
61
+ ReferencedContainer = "container:CakeMania.xcodeproj">
62
+ </BuildableReference>
63
+ </BuildableProductRunnable>
64
+ <AdditionalOptions>
65
+ </AdditionalOptions>
66
+ </LaunchAction>
67
+ <ProfileAction
68
+ buildConfiguration = "RC"
69
+ shouldUseLaunchSchemeArgsEnv = "YES"
70
+ savedToolIdentifier = ""
71
+ useCustomWorkingDirectory = "NO"
72
+ debugDocumentVersioning = "YES">
73
+ <BuildableProductRunnable
74
+ runnableDebuggingMode = "0">
75
+ <BuildableReference
76
+ BuildableIdentifier = "primary"
77
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
78
+ BuildableName = "CakeMania.app"
79
+ BlueprintName = "CakeMania"
80
+ ReferencedContainer = "container:CakeMania.xcodeproj">
81
+ </BuildableReference>
82
+ </BuildableProductRunnable>
83
+ </ProfileAction>
84
+ <AnalyzeAction
85
+ buildConfiguration = "RC">
86
+ </AnalyzeAction>
87
+ <ArchiveAction
88
+ buildConfiguration = "RC"
89
+ revealArchiveInOrganizer = "YES">
90
+ </ArchiveAction>
91
+ </Scheme>
@@ -0,0 +1,91 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "0700"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <BuildActionEntries>
9
+ <BuildActionEntry
10
+ buildForTesting = "NO"
11
+ buildForRunning = "YES"
12
+ buildForProfiling = "YES"
13
+ buildForArchiving = "YES"
14
+ buildForAnalyzing = "YES">
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
18
+ BuildableName = "CakeMania.app"
19
+ BlueprintName = "CakeMania"
20
+ ReferencedContainer = "container:CakeMania.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ </BuildActionEntries>
24
+ </BuildAction>
25
+ <TestAction
26
+ buildConfiguration = "Staging"
27
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
+ shouldUseLaunchSchemeArgsEnv = "YES">
30
+ <Testables>
31
+ </Testables>
32
+ <MacroExpansion>
33
+ <BuildableReference
34
+ BuildableIdentifier = "primary"
35
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
36
+ BuildableName = "CakeMania.app"
37
+ BlueprintName = "CakeMania"
38
+ ReferencedContainer = "container:CakeMania.xcodeproj">
39
+ </BuildableReference>
40
+ </MacroExpansion>
41
+ <AdditionalOptions>
42
+ </AdditionalOptions>
43
+ </TestAction>
44
+ <LaunchAction
45
+ buildConfiguration = "Staging"
46
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
47
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
48
+ launchStyle = "0"
49
+ useCustomWorkingDirectory = "NO"
50
+ ignoresPersistentStateOnLaunch = "NO"
51
+ debugDocumentVersioning = "YES"
52
+ debugServiceExtension = "internal"
53
+ allowLocationSimulation = "YES">
54
+ <BuildableProductRunnable
55
+ runnableDebuggingMode = "0">
56
+ <BuildableReference
57
+ BuildableIdentifier = "primary"
58
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
59
+ BuildableName = "CakeMania.app"
60
+ BlueprintName = "CakeMania"
61
+ ReferencedContainer = "container:CakeMania.xcodeproj">
62
+ </BuildableReference>
63
+ </BuildableProductRunnable>
64
+ <AdditionalOptions>
65
+ </AdditionalOptions>
66
+ </LaunchAction>
67
+ <ProfileAction
68
+ buildConfiguration = "Staging"
69
+ shouldUseLaunchSchemeArgsEnv = "YES"
70
+ savedToolIdentifier = ""
71
+ useCustomWorkingDirectory = "NO"
72
+ debugDocumentVersioning = "YES">
73
+ <BuildableProductRunnable
74
+ runnableDebuggingMode = "0">
75
+ <BuildableReference
76
+ BuildableIdentifier = "primary"
77
+ BlueprintIdentifier = "D2CF49CEAF900441E70E24B1"
78
+ BuildableName = "CakeMania.app"
79
+ BlueprintName = "CakeMania"
80
+ ReferencedContainer = "container:CakeMania.xcodeproj">
81
+ </BuildableReference>
82
+ </BuildableProductRunnable>
83
+ </ProfileAction>
84
+ <AnalyzeAction
85
+ buildConfiguration = "Staging">
86
+ </AnalyzeAction>
87
+ <ArchiveAction
88
+ buildConfiguration = "Staging"
89
+ revealArchiveInOrganizer = "YES">
90
+ </ArchiveAction>
91
+ </Scheme>
@@ -0,0 +1,56 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "0810"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ </BuildAction>
9
+ <TestAction
10
+ buildConfiguration = "Debug"
11
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
12
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
13
+ shouldUseLaunchSchemeArgsEnv = "YES">
14
+ <Testables>
15
+ <TestableReference
16
+ skipped = "NO">
17
+ <BuildableReference
18
+ BuildableIdentifier = "primary"
19
+ BlueprintIdentifier = "4D92BE07FADBC9796349860D"
20
+ BuildableName = "CakeManiaTst.xctest"
21
+ BlueprintName = "CakeManiaTst"
22
+ ReferencedContainer = "container:CakeMania.xcodeproj">
23
+ </BuildableReference>
24
+ </TestableReference>
25
+ </Testables>
26
+ <AdditionalOptions>
27
+ </AdditionalOptions>
28
+ </TestAction>
29
+ <LaunchAction
30
+ buildConfiguration = "Debug"
31
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
32
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
33
+ launchStyle = "0"
34
+ useCustomWorkingDirectory = "NO"
35
+ ignoresPersistentStateOnLaunch = "NO"
36
+ debugDocumentVersioning = "YES"
37
+ debugServiceExtension = "internal"
38
+ allowLocationSimulation = "YES">
39
+ <AdditionalOptions>
40
+ </AdditionalOptions>
41
+ </LaunchAction>
42
+ <ProfileAction
43
+ buildConfiguration = "Debug"
44
+ shouldUseLaunchSchemeArgsEnv = "YES"
45
+ savedToolIdentifier = ""
46
+ useCustomWorkingDirectory = "NO"
47
+ debugDocumentVersioning = "YES">
48
+ </ProfileAction>
49
+ <AnalyzeAction
50
+ buildConfiguration = "Debug">
51
+ </AnalyzeAction>
52
+ <ArchiveAction
53
+ buildConfiguration = "Debug"
54
+ revealArchiveInOrganizer = "YES">
55
+ </ArchiveAction>
56
+ </Scheme>
@@ -0,0 +1,56 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "0810"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ </BuildAction>
9
+ <TestAction
10
+ buildConfiguration = "Debug"
11
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
12
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
13
+ shouldUseLaunchSchemeArgsEnv = "YES">
14
+ <Testables>
15
+ <TestableReference
16
+ skipped = "NO">
17
+ <BuildableReference
18
+ BuildableIdentifier = "primary"
19
+ BlueprintIdentifier = "E1D6D3AA914753263EC9C524"
20
+ BuildableName = "CakeManiaUITst.xctest"
21
+ BlueprintName = "CakeManiaUITst"
22
+ ReferencedContainer = "container:CakeMania.xcodeproj">
23
+ </BuildableReference>
24
+ </TestableReference>
25
+ </Testables>
26
+ <AdditionalOptions>
27
+ </AdditionalOptions>
28
+ </TestAction>
29
+ <LaunchAction
30
+ buildConfiguration = "Debug"
31
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
32
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
33
+ launchStyle = "0"
34
+ useCustomWorkingDirectory = "NO"
35
+ ignoresPersistentStateOnLaunch = "NO"
36
+ debugDocumentVersioning = "YES"
37
+ debugServiceExtension = "internal"
38
+ allowLocationSimulation = "YES">
39
+ <AdditionalOptions>
40
+ </AdditionalOptions>
41
+ </LaunchAction>
42
+ <ProfileAction
43
+ buildConfiguration = "Debug"
44
+ shouldUseLaunchSchemeArgsEnv = "YES"
45
+ savedToolIdentifier = ""
46
+ useCustomWorkingDirectory = "NO"
47
+ debugDocumentVersioning = "YES">
48
+ </ProfileAction>
49
+ <AnalyzeAction
50
+ buildConfiguration = "Debug">
51
+ </AnalyzeAction>
52
+ <ArchiveAction
53
+ buildConfiguration = "Debug"
54
+ revealArchiveInOrganizer = "YES">
55
+ </ArchiveAction>
56
+ </Scheme>
@@ -0,0 +1,72 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>SchemeUserState</key>
6
+ <dict>
7
+ <key>CakeMania-AppStore.xcscheme_^#shared#^_</key>
8
+ <dict>
9
+ <key>isShown</key>
10
+ <true/>
11
+ <key>orderHint</key>
12
+ <integer>0</integer>
13
+ </dict>
14
+ <key>CakeMania-Debug.xcscheme_^#shared#^_</key>
15
+ <dict>
16
+ <key>isShown</key>
17
+ <true/>
18
+ <key>orderHint</key>
19
+ <integer>1</integer>
20
+ </dict>
21
+ <key>CakeMania-Production.xcscheme_^#shared#^_</key>
22
+ <dict>
23
+ <key>isShown</key>
24
+ <true/>
25
+ <key>orderHint</key>
26
+ <integer>2</integer>
27
+ </dict>
28
+ <key>CakeMania-RC.xcscheme_^#shared#^_</key>
29
+ <dict>
30
+ <key>isShown</key>
31
+ <true/>
32
+ <key>orderHint</key>
33
+ <integer>3</integer>
34
+ </dict>
35
+ <key>CakeMania-Staging.xcscheme_^#shared#^_</key>
36
+ <dict>
37
+ <key>isShown</key>
38
+ <true/>
39
+ <key>orderHint</key>
40
+ <integer>4</integer>
41
+ </dict>
42
+ <key>CakeManiaTst.xcscheme</key>
43
+ <dict>
44
+ <key>orderHint</key>
45
+ <integer>5</integer>
46
+ </dict>
47
+ <key>CakeManiaUITst.xcscheme</key>
48
+ <dict>
49
+ <key>orderHint</key>
50
+ <integer>6</integer>
51
+ </dict>
52
+ </dict>
53
+ <key>SuppressBuildableAutocreation</key>
54
+ <dict>
55
+ <key>4D92BE07FADBC9796349860D</key>
56
+ <dict>
57
+ <key>primary</key>
58
+ <true/>
59
+ </dict>
60
+ <key>D2CF49CEAF900441E70E24B1</key>
61
+ <dict>
62
+ <key>primary</key>
63
+ <true/>
64
+ </dict>
65
+ <key>E1D6D3AA914753263EC9C524</key>
66
+ <dict>
67
+ <key>primary</key>
68
+ <true/>
69
+ </dict>
70
+ </dict>
71
+ </dict>
72
+ </plist>