fwtoolkit 1.0.6 → 2.0.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.
- checksums.yaml +6 -14
- data/lib/fwtoolkit/cli/project.rb +7 -11
- data/lib/fwtoolkit/cli/xcode.rb +3 -3
- data/lib/fwtoolkit/cli.rb +5 -8
- data/lib/fwtoolkit/config/config.sample +2 -3
- data/lib/fwtoolkit/configfile.rb +0 -1
- data/lib/fwtoolkit/version.rb +1 -1
- data/templates/objc_project/git/.gitignore +31 -0
- data/templates/objc_project/rvm/Gemfile +3 -0
- data/templates/objc_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt +441 -0
- data/templates/{default_project → objc_project}/xcode/%project_name%/%project_name%.xcodeproj/project.xcworkspace/contents.xcworkspacedata.tt +0 -0
- data/templates/{default_project → objc_project}/xcode/%project_name%/%target_name%/%class_prefix%AppDelegate.h.tt +7 -4
- data/templates/{default_project → objc_project}/xcode/%project_name%/%target_name%/%class_prefix%AppDelegate.m.tt +14 -18
- data/templates/objc_project/xcode/%project_name%/%target_name%/%class_prefix%ViewController.h.tt +15 -0
- data/templates/objc_project/xcode/%project_name%/%target_name%/%class_prefix%ViewController.m.tt +27 -0
- data/templates/objc_project/xcode/%project_name%/%target_name%/AppDelegate.swift.tt +46 -0
- data/templates/objc_project/xcode/%project_name%/%target_name%/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
- data/templates/objc_project/xcode/%project_name%/%target_name%/Resources/Base.lproj/LaunchScreen.storyboard +27 -0
- data/templates/objc_project/xcode/%project_name%/%target_name%/Resources/Base.lproj/Main.storyboard +26 -0
- data/templates/{default_project/xcode/%project_name%/%target_name%/Supporting Files/%project_name%-Info.plist → objc_project/xcode/%project_name%/%target_name%/Supporting Files/Info.plist } +8 -6
- data/templates/{default_project → objc_project}/xcode/%project_name%/%target_name%/Supporting Files/fw-shared.xcconfig +1 -5
- data/templates/{default_project → objc_project}/xcode/%project_name%/%target_name%/Supporting Files/main.m.tt +3 -5
- data/templates/objc_project/xcode/%project_name%/%target_name%/ViewController.swift.tt +25 -0
- data/templates/objc_project/xcode/%project_name%/%target_name%Tests/%project_name%Tests.m.tt +39 -0
- data/templates/{default_project/xcode/%project_name%/%tests_target_name%/Supporting Files/%tests_target_name%-Info.plist → objc_project/xcode/%project_name%/%target_name%Tests/Resources/Info.plist} +4 -2
- data/templates/objc_project/xcode/%project_name%/%tests_target_name%/%project_name%Tests.swift.tt +36 -0
- data/templates/objc_project/xcode/%project_name%/%tests_target_name%/Supporting Files/Info.plist +24 -0
- data/templates/{default_project → objc_project}/xcode/%project_name%.xcworkspace/contents.xcworkspacedata.tt +1 -1
- data/templates/{default_project → objc_project}/xcode/Podfile.tt +2 -0
- data/templates/{default_project → objc_project}/xcode/Rakefile.tt +0 -5
- data/templates/swift_project/git/.gitignore +31 -0
- data/templates/swift_project/rvm/Gemfile +3 -0
- data/templates/swift_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt +435 -0
- data/templates/swift_project/xcode/%project_name%/%project_name%.xcodeproj/project.xcworkspace/contents.xcworkspacedata.tt +7 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/%class_prefix%AppDelegate.h.tt +18 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/%class_prefix%AppDelegate.m.tt +45 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/%class_prefix%ViewController.h.tt +15 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/%class_prefix%ViewController.m.tt +27 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/AppDelegate.swift.tt +46 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json +73 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/Resources/Base.lproj/LaunchScreen.storyboard +27 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/Resources/Base.lproj/Main.storyboard +25 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/Supporting Files/Info.plist +47 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/Supporting Files/fw-shared.xcconfig +37 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/Supporting Files/main.m.tt +16 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/ViewController.swift.tt +25 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%Tests/%project_name%Tests.m.tt +39 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%Tests/Resources/Info.plist +24 -0
- data/templates/swift_project/xcode/%project_name%/%tests_target_name%/%project_name%Tests.swift.tt +36 -0
- data/templates/swift_project/xcode/%project_name%/%tests_target_name%/Supporting Files/Info.plist +24 -0
- data/templates/swift_project/xcode/%project_name%/.DS_Store +0 -0
- data/templates/swift_project/xcode/%project_name%.xcworkspace/contents.xcworkspacedata.tt +7 -0
- data/templates/swift_project/xcode/.DS_Store +0 -0
- data/templates/swift_project/xcode/Podfile.tt +5 -0
- data/templates/swift_project/xcode/Rakefile.tt +9 -0
- metadata +103 -123
- data/templates/default_project/frank/%project_name%/%target_name%/%class_prefix%AppDelegate+Frank.h.tt +0 -15
- data/templates/default_project/frank/%project_name%/%target_name%/%class_prefix%AppDelegate+Frank.m.tt +0 -86
- data/templates/default_project/frank/%project_name%/Frank/features/example.feature +0 -8
- data/templates/default_project/frank/%project_name%/Frank/features/step_definitions/launch_steps.rb +0 -15
- data/templates/default_project/frank/%project_name%/Frank/features/support/env.rb +0 -21
- data/templates/default_project/frank/%project_name%/Frank/features/support/mimic.rb +0 -94
- data/templates/default_project/frank/~template_config.rb +0 -11
- data/templates/default_project/frank_seed_core_data/%project_name%/Frank/features/support/models/%class_name%.rb.tt +0 -30
- data/templates/default_project/frank_seed_support/%project_name%/Frank/features/support/models/factories.rb.tt +0 -10
- data/templates/default_project/frank_seed_support/%project_name%/Frank/features/support/views/my_objects_json.erb +0 -7
- data/templates/default_project/frank_seed_support/%project_name%/Frank/features/support/views/my_objects_xml.erb +0 -7
- data/templates/default_project/rvm/.rvmrc.tt +0 -41
- data/templates/default_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt +0 -547
- data/templates/default_project/xcode/%project_name%/%project_name%.xcodeproj/xcshareddata/xcschemes/%project_name%-Release.xcscheme.tt +0 -105
- data/templates/default_project/xcode/%project_name%/%project_name%.xcodeproj/xcshareddata/xcschemes/%project_name%-Testing.xcscheme.tt +0 -105
- data/templates/default_project/xcode/%project_name%/%project_name%.xcodeproj/xcshareddata/xcschemes/%project_name%.xcscheme.tt +0 -105
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/%project_name%-Prefix.pch.tt +0 -14
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/en.lproj/InfoPlist.strings +0 -2
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/info.plist.h.tt +0 -8
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/version.sh +0 -159
- data/templates/default_project/xcode/%project_name%/%tests_target_name%/%project_name%Tests.h.tt +0 -13
- data/templates/default_project/xcode/%project_name%/%tests_target_name%/%project_name%Tests.m.tt +0 -32
- data/templates/default_project/xcode/%project_name%/%tests_target_name%/Supporting Files/en.lproj/InfoPlist.strings +0 -2
- 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/xcshareddata/%project_name%.xccheckout.tt +0 -41
- data/templates/default_project/xcode/FWProjectfile.tt +0 -14
- data/templates/default_project/xcode/~template_config.rb +0 -5
@@ -1,30 +0,0 @@
|
|
1
|
-
# Generated code
|
2
|
-
class <%= config[:class_name] %> < FWToolkit::Test::FrankModel
|
3
|
-
# attributes
|
4
|
-
attr_accessor <%= config[:model].attributes.map{|p| ":#{p.name.ruby_format}"}.join(', ') %>
|
5
|
-
# relationships
|
6
|
-
attr_reader <%= config[:model].relationships.select{|r| r.inverse != nil}.map{|r| ":#{r.name.ruby_format}"}.join(', ') %>
|
7
|
-
|
8
|
-
# inverse relationship setters
|
9
|
-
<% config[:model].relationships.select{|r| not r.to_many? and r.inverse}.each do |r| %><% name = r.name.ruby_format %>
|
10
|
-
def <%= name %>=(_<%= name %>)
|
11
|
-
@<%= name %> = _<%= name %>
|
12
|
-
unless @<%= name %>.<%= r.inverse.ruby_format %>
|
13
|
-
@<%= name %>.<%= r.inverse.ruby_format %> = []
|
14
|
-
end
|
15
|
-
@<%= name %>.<%= r.inverse.ruby_format %> << self
|
16
|
-
end
|
17
|
-
<% end %>
|
18
|
-
|
19
|
-
# lazy initialisation of to_many relationships
|
20
|
-
<% config[:model].relationships.select{|r| r.to_many? and r.inverse}.each do |r| %><% name = r.name.ruby_format %>
|
21
|
-
def <%= name %>
|
22
|
-
@<%= name %> ||= []
|
23
|
-
end
|
24
|
-
<% end %>
|
25
|
-
|
26
|
-
def as_json(options={})
|
27
|
-
<% attributes_and_properties = config[:model].attributes + config[:model].relationships.select{|r| r.to_many? and r.inverse} %>
|
28
|
-
{'<%= config[:model].name %>' => {<%= attributes_and_properties.map {|p| ":#{p.name} => self.#{p.name.ruby_format}"}.join(', ') %>}}
|
29
|
-
end
|
30
|
-
end
|
@@ -1,41 +0,0 @@
|
|
1
|
-
#!/usr/bin/env bash
|
2
|
-
|
3
|
-
# This is an RVM Project .rvmrc file, used to automatically load the ruby
|
4
|
-
# development environment upon cd'ing into the directory
|
5
|
-
|
6
|
-
# First we specify our desired <ruby>[@<gemset>], the @gemset name is optional,
|
7
|
-
# Only full ruby name is supported here, for short names use:
|
8
|
-
# echo "rvm use 1.9.3" > .rvmrc
|
9
|
-
environment_id="ruby-<%= @ruby_version %>@<%= @app_name %>"
|
10
|
-
|
11
|
-
# First we attempt to load the desired environment directly from the environment
|
12
|
-
# file. This is very fast and efficient compared to running through the entire
|
13
|
-
# CLI and selector. If you want feedback on which environment was used then
|
14
|
-
# insert the word 'use' after --create as this triggers verbose mode.
|
15
|
-
if [[ -d "${rvm_path:-$HOME/.rvm}/environments"
|
16
|
-
&& -s "${rvm_path:-$HOME/.rvm}/environments/$environment_id" ]]
|
17
|
-
then
|
18
|
-
\. "${rvm_path:-$HOME/.rvm}/environments/$environment_id"
|
19
|
-
[[ -s "${rvm_path:-$HOME/.rvm}/hooks/after_use" ]] &&
|
20
|
-
\. "${rvm_path:-$HOME/.rvm}/hooks/after_use" || true
|
21
|
-
else
|
22
|
-
# If the environment file has not yet been created, use the RVM CLI to select.
|
23
|
-
rvm --create "$environment_id" || {
|
24
|
-
echo "Failed to create RVM environment '${environment_id}'."
|
25
|
-
return 1
|
26
|
-
}
|
27
|
-
fi
|
28
|
-
|
29
|
-
# Run bundler
|
30
|
-
#if [[ -s Gemfile ]] && {
|
31
|
-
# ! builtin command -v bundle >/dev/null ||
|
32
|
-
# builtin command -v bundle | GREP_OPTIONS= \grep $rvm_path/bin/bundle >/dev/null
|
33
|
-
#}
|
34
|
-
#then
|
35
|
-
# printf "%b" "The rubygem 'bundler' is not installed. Installing it now.\n"
|
36
|
-
# gem install bundler
|
37
|
-
#fi
|
38
|
-
#if [[ -s Gemfile ]] && builtin command -v bundle >/dev/null
|
39
|
-
#then
|
40
|
-
# bundle install | GREP_OPTIONS= \grep -vE '^Using|Your bundle is complete'
|
41
|
-
#fi
|
data/templates/default_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt
DELETED
@@ -1,547 +0,0 @@
|
|
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
|
-
B7402C3016C2DD800014570E /* <%= config[:class_prefix] %>AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B7402C2F16C2DD800014570E /* <%= config[:class_prefix] %>AppDelegate.m */; };
|
26
|
-
/* End PBXBuildFile section */
|
27
|
-
|
28
|
-
/* Begin PBXContainerItemProxy section */
|
29
|
-
B7402BEA16C26CE70014570E /* PBXContainerItemProxy */ = {
|
30
|
-
isa = PBXContainerItemProxy;
|
31
|
-
containerPortal = B7402BBB16C26CE70014570E /* Project object */;
|
32
|
-
proxyType = 1;
|
33
|
-
remoteGlobalIDString = B7402BC316C26CE70014570E;
|
34
|
-
remoteInfo = "<%= config[:project_name] %>";
|
35
|
-
};
|
36
|
-
/* End PBXContainerItemProxy section */
|
37
|
-
|
38
|
-
/* Begin PBXFileReference section */
|
39
|
-
B7402BC416C26CE70014570E /* <%= config[:binary_name] %>.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "<%= config[:binary_name] %>.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
40
|
-
B7402BC816C26CE70014570E /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
41
|
-
B7402BCA16C26CE70014570E /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
42
|
-
B7402BCC16C26CE70014570E /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
43
|
-
B7402BD016C26CE70014570E /* <%= config[:project_name] %>-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "<%= config[:project_name] %>-Info.plist"; sourceTree = "<group>"; };
|
44
|
-
B7402BD216C26CE70014570E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
45
|
-
B7402BD416C26CE70014570E /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
46
|
-
B7402BD616C26CE70014570E /* <%= config[:project_name] %>-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "<%= config[:project_name] %>-Prefix.pch"; sourceTree = "<group>"; };
|
47
|
-
B7402BE516C26CE70014570E /* <%= config[:binary_name] %>Tests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "<%= config[:binary_name] %>Tests.octest"; sourceTree = BUILT_PRODUCTS_DIR; };
|
48
|
-
B7402BE616C26CE70014570E /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; };
|
49
|
-
B7402BEE16C26CE70014570E /* <%= config[:tests_target_name] %>-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "<%= config[:tests_target_name] %>-Info.plist"; sourceTree = "<group>"; };
|
50
|
-
B7402BF016C26CE70014570E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
51
|
-
B7402BFD16C26ED80014570E /* <%= config[:project_name] %>Tests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "<%= config[:project_name] %>Tests.h"; sourceTree = "<group>"; };
|
52
|
-
B7402BFE16C26ED80014570E /* <%= config[:project_name] %>Tests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "<%= config[:project_name] %>Tests.m"; sourceTree = "<group>"; };
|
53
|
-
B7402C1116C270FC0014570E /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
|
54
|
-
B7402C1216C270FC0014570E /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
|
55
|
-
B7402C1316C270FC0014570E /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
|
56
|
-
B7402C1716C275930014570E /* fw-shared.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "fw-shared.xcconfig"; sourceTree = "<group>"; };
|
57
|
-
B7402C2E16C2DD800014570E /* <%= config[:class_prefix] %>AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "<%= config[:class_prefix] %>AppDelegate.h"; sourceTree = "<group>"; };
|
58
|
-
B7402C2F16C2DD800014570E /* <%= config[:class_prefix] %>AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "<%= config[:class_prefix] %>AppDelegate.m"; sourceTree = "<group>"; };
|
59
|
-
/* End PBXFileReference section */
|
60
|
-
|
61
|
-
/* Begin PBXFrameworksBuildPhase section */
|
62
|
-
B7402BC116C26CE70014570E /* Frameworks */ = {
|
63
|
-
isa = PBXFrameworksBuildPhase;
|
64
|
-
buildActionMask = 2147483647;
|
65
|
-
files = (
|
66
|
-
B7402BC916C26CE70014570E /* UIKit.framework in Frameworks */,
|
67
|
-
B7402BCB16C26CE70014570E /* Foundation.framework in Frameworks */,
|
68
|
-
B7402BCD16C26CE70014570E /* CoreGraphics.framework in Frameworks */,
|
69
|
-
);
|
70
|
-
runOnlyForDeploymentPostprocessing = 0;
|
71
|
-
};
|
72
|
-
B7402BE116C26CE70014570E /* Frameworks */ = {
|
73
|
-
isa = PBXFrameworksBuildPhase;
|
74
|
-
buildActionMask = 2147483647;
|
75
|
-
files = (
|
76
|
-
B7402BE716C26CE70014570E /* SenTestingKit.framework in Frameworks */,
|
77
|
-
B7402BE816C26CE70014570E /* UIKit.framework in Frameworks */,
|
78
|
-
B7402BE916C26CE70014570E /* Foundation.framework in Frameworks */,
|
79
|
-
);
|
80
|
-
runOnlyForDeploymentPostprocessing = 0;
|
81
|
-
};
|
82
|
-
/* End PBXFrameworksBuildPhase section */
|
83
|
-
|
84
|
-
/* Begin PBXGroup section */
|
85
|
-
B7402BB916C26CE70014570E = {
|
86
|
-
isa = PBXGroup;
|
87
|
-
children = (
|
88
|
-
B7402BCE16C26CE70014570E /* <%= config[:target_name] %> */,
|
89
|
-
B7402BEC16C26CE70014570E /* <%= config[:tests_target_name] %> */,
|
90
|
-
B7402C0016C26F8F0014570E /* Resources */,
|
91
|
-
B7402BC716C26CE70014570E /* Frameworks */,
|
92
|
-
B7402BC516C26CE70014570E /* Products */,
|
93
|
-
);
|
94
|
-
sourceTree = "<group>";
|
95
|
-
};
|
96
|
-
B7402BC516C26CE70014570E /* Products */ = {
|
97
|
-
isa = PBXGroup;
|
98
|
-
children = (
|
99
|
-
B7402BC416C26CE70014570E /* <%= config[:binary_name] %>.app */,
|
100
|
-
B7402BE516C26CE70014570E /* <%= config[:binary_name] %>Tests.octest */,
|
101
|
-
);
|
102
|
-
name = Products;
|
103
|
-
sourceTree = "<group>";
|
104
|
-
};
|
105
|
-
B7402BC716C26CE70014570E /* Frameworks */ = {
|
106
|
-
isa = PBXGroup;
|
107
|
-
children = (
|
108
|
-
B7402BC816C26CE70014570E /* UIKit.framework */,
|
109
|
-
B7402BCA16C26CE70014570E /* Foundation.framework */,
|
110
|
-
B7402BCC16C26CE70014570E /* CoreGraphics.framework */,
|
111
|
-
B7402BE616C26CE70014570E /* SenTestingKit.framework */,
|
112
|
-
);
|
113
|
-
name = Frameworks;
|
114
|
-
sourceTree = "<group>";
|
115
|
-
};
|
116
|
-
B7402BCE16C26CE70014570E /* <%= config[:target_name] %> */ = {
|
117
|
-
isa = PBXGroup;
|
118
|
-
children = (
|
119
|
-
B7402C2E16C2DD800014570E /* <%= config[:class_prefix] %>AppDelegate.h */,
|
120
|
-
B7402C2F16C2DD800014570E /* <%= config[:class_prefix] %>AppDelegate.m */,
|
121
|
-
B7402BCF16C26CE70014570E /* Supporting Files */,
|
122
|
-
);
|
123
|
-
path = "<%= config[:target_name] %>";
|
124
|
-
sourceTree = "<group>";
|
125
|
-
};
|
126
|
-
B7402BCF16C26CE70014570E /* Supporting Files */ = {
|
127
|
-
isa = PBXGroup;
|
128
|
-
children = (
|
129
|
-
B7402C1716C275930014570E /* fw-shared.xcconfig */,
|
130
|
-
B7402BD016C26CE70014570E /* <%= config[:project_name] %>-Info.plist */,
|
131
|
-
B7402BD116C26CE70014570E /* InfoPlist.strings */,
|
132
|
-
B7402BD416C26CE70014570E /* main.m */,
|
133
|
-
B7402BD616C26CE70014570E /* <%= config[:project_name] %>-Prefix.pch */,
|
134
|
-
);
|
135
|
-
path = "Supporting Files";
|
136
|
-
sourceTree = "<group>";
|
137
|
-
};
|
138
|
-
B7402BEC16C26CE70014570E /* <%= config[:tests_target_name] %> */ = {
|
139
|
-
isa = PBXGroup;
|
140
|
-
children = (
|
141
|
-
B7402BFD16C26ED80014570E /* <%= config[:project_name] %>Tests.h */,
|
142
|
-
B7402BFE16C26ED80014570E /* <%= config[:project_name] %>Tests.m */,
|
143
|
-
B7402BED16C26CE70014570E /* Supporting Files */,
|
144
|
-
);
|
145
|
-
path = "<%= config[:tests_target_name] %>";
|
146
|
-
sourceTree = "<group>";
|
147
|
-
};
|
148
|
-
B7402BED16C26CE70014570E /* Supporting Files */ = {
|
149
|
-
isa = PBXGroup;
|
150
|
-
children = (
|
151
|
-
B7402BEE16C26CE70014570E /* <%= config[:tests_target_name] %>-Info.plist */,
|
152
|
-
B7402BEF16C26CE70014570E /* InfoPlist.strings */,
|
153
|
-
);
|
154
|
-
path = "Supporting Files";
|
155
|
-
sourceTree = "<group>";
|
156
|
-
};
|
157
|
-
B7402C0016C26F8F0014570E /* Resources */ = {
|
158
|
-
isa = PBXGroup;
|
159
|
-
children = (
|
160
|
-
B7402C1116C270FC0014570E /* Default-568h@2x.png */,
|
161
|
-
B7402C1216C270FC0014570E /* Default.png */,
|
162
|
-
B7402C1316C270FC0014570E /* Default@2x.png */,
|
163
|
-
);
|
164
|
-
path = Resources;
|
165
|
-
sourceTree = "<group>";
|
166
|
-
};
|
167
|
-
/* End PBXGroup section */
|
168
|
-
|
169
|
-
/* Begin PBXNativeTarget section */
|
170
|
-
B7402BC316C26CE70014570E /* <%= config[:target_name] %> */ = {
|
171
|
-
isa = PBXNativeTarget;
|
172
|
-
buildConfigurationList = B7402BF716C26CE70014570E /* Build configuration list for PBXNativeTarget "<%= config[:target_name] %>" */;
|
173
|
-
buildPhases = (
|
174
|
-
B7402BC016C26CE70014570E /* Sources */,
|
175
|
-
B7402BC116C26CE70014570E /* Frameworks */,
|
176
|
-
B7402BC216C26CE70014570E /* Resources */,
|
177
|
-
B71B013B17280F78009B2A61 /* Log build environment */,
|
178
|
-
);
|
179
|
-
buildRules = (
|
180
|
-
);
|
181
|
-
dependencies = (
|
182
|
-
);
|
183
|
-
name = "<%= config[:target_name] %>";
|
184
|
-
productName = "<%= config[:project_name] %>";
|
185
|
-
productReference = B7402BC416C26CE70014570E /* <%= config[:binary_name] %>.app */;
|
186
|
-
productType = "com.apple.product-type.application";
|
187
|
-
};
|
188
|
-
B7402BE416C26CE70014570E /* <%= config[:tests_target_name] %> */ = {
|
189
|
-
isa = PBXNativeTarget;
|
190
|
-
buildConfigurationList = B7402BFA16C26CE70014570E /* Build configuration list for PBXNativeTarget "<%= config[:tests_target_name] %>" */;
|
191
|
-
buildPhases = (
|
192
|
-
B7402BE016C26CE70014570E /* Sources */,
|
193
|
-
B7402BE116C26CE70014570E /* Frameworks */,
|
194
|
-
B7402BE216C26CE70014570E /* Resources */,
|
195
|
-
B7402BE316C26CE70014570E /* ShellScript */,
|
196
|
-
);
|
197
|
-
buildRules = (
|
198
|
-
);
|
199
|
-
dependencies = (
|
200
|
-
B7402BEB16C26CE70014570E /* PBXTargetDependency */,
|
201
|
-
);
|
202
|
-
name = "<%= config[:tests_target_name] %>";
|
203
|
-
productName = "<%= config[:project_name] %>Tests";
|
204
|
-
productReference = B7402BE516C26CE70014570E /* <%= config[:binary_name] %>Tests.octest */;
|
205
|
-
productType = "com.apple.product-type.bundle";
|
206
|
-
};
|
207
|
-
/* End PBXNativeTarget section */
|
208
|
-
|
209
|
-
/* Begin PBXProject section */
|
210
|
-
B7402BBB16C26CE70014570E /* Project object */ = {
|
211
|
-
isa = PBXProject;
|
212
|
-
attributes = {
|
213
|
-
CLASSPREFIX = <%= config[:class_prefix] %>;
|
214
|
-
LastUpgradeCheck = 0450;
|
215
|
-
ORGANIZATIONNAME = "<%= config[:Organization_Name] %>";
|
216
|
-
};
|
217
|
-
buildConfigurationList = B7402BBE16C26CE70014570E /* Build configuration list for PBXProject "<%= config[:project_name] %>" */;
|
218
|
-
compatibilityVersion = "Xcode 3.2";
|
219
|
-
developmentRegion = English;
|
220
|
-
hasScannedForEncodings = 0;
|
221
|
-
knownRegions = (
|
222
|
-
en,
|
223
|
-
);
|
224
|
-
mainGroup = B7402BB916C26CE70014570E;
|
225
|
-
productRefGroup = B7402BC516C26CE70014570E /* Products */;
|
226
|
-
projectDirPath = "";
|
227
|
-
projectRoot = "";
|
228
|
-
targets = (
|
229
|
-
B7402BC316C26CE70014570E /* <%= config[:target_name] %> */,
|
230
|
-
B7402BE416C26CE70014570E /* <%= config[:tests_target_name] %> */,
|
231
|
-
);
|
232
|
-
};
|
233
|
-
/* End PBXProject section */
|
234
|
-
|
235
|
-
/* Begin PBXResourcesBuildPhase section */
|
236
|
-
B7402BC216C26CE70014570E /* Resources */ = {
|
237
|
-
isa = PBXResourcesBuildPhase;
|
238
|
-
buildActionMask = 2147483647;
|
239
|
-
files = (
|
240
|
-
B7402BD316C26CE70014570E /* InfoPlist.strings in Resources */,
|
241
|
-
B7402C1416C270FC0014570E /* Default-568h@2x.png in Resources */,
|
242
|
-
B7402C1516C270FC0014570E /* Default.png in Resources */,
|
243
|
-
B7402C1616C270FC0014570E /* Default@2x.png in Resources */,
|
244
|
-
B7402C1816C275940014570E /* fw-shared.xcconfig in Resources */,
|
245
|
-
);
|
246
|
-
runOnlyForDeploymentPostprocessing = 0;
|
247
|
-
};
|
248
|
-
B7402BE216C26CE70014570E /* Resources */ = {
|
249
|
-
isa = PBXResourcesBuildPhase;
|
250
|
-
buildActionMask = 2147483647;
|
251
|
-
files = (
|
252
|
-
B7402BF116C26CE70014570E /* InfoPlist.strings in Resources */,
|
253
|
-
B7402C1916C275940014570E /* fw-shared.xcconfig in Resources */,
|
254
|
-
);
|
255
|
-
runOnlyForDeploymentPostprocessing = 0;
|
256
|
-
};
|
257
|
-
/* End PBXResourcesBuildPhase section */
|
258
|
-
|
259
|
-
/* Begin PBXShellScriptBuildPhase section */
|
260
|
-
B71B013B17280F78009B2A61 /* Log build environment */ = {
|
261
|
-
isa = PBXShellScriptBuildPhase;
|
262
|
-
buildActionMask = 2147483647;
|
263
|
-
files = (
|
264
|
-
);
|
265
|
-
inputPaths = (
|
266
|
-
);
|
267
|
-
name = "Log build environment";
|
268
|
-
outputPaths = (
|
269
|
-
);
|
270
|
-
runOnlyForDeploymentPostprocessing = 0;
|
271
|
-
shellPath = /bin/sh;
|
272
|
-
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";
|
273
|
-
};
|
274
|
-
B7402BE316C26CE70014570E /* ShellScript */ = {
|
275
|
-
isa = PBXShellScriptBuildPhase;
|
276
|
-
buildActionMask = 2147483647;
|
277
|
-
files = (
|
278
|
-
);
|
279
|
-
inputPaths = (
|
280
|
-
);
|
281
|
-
outputPaths = (
|
282
|
-
);
|
283
|
-
runOnlyForDeploymentPostprocessing = 0;
|
284
|
-
shellPath = /bin/sh;
|
285
|
-
shellScript = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n";
|
286
|
-
};
|
287
|
-
/* End PBXShellScriptBuildPhase section */
|
288
|
-
|
289
|
-
/* Begin PBXSourcesBuildPhase section */
|
290
|
-
B7402BC016C26CE70014570E /* Sources */ = {
|
291
|
-
isa = PBXSourcesBuildPhase;
|
292
|
-
buildActionMask = 2147483647;
|
293
|
-
files = (
|
294
|
-
B7402BD516C26CE70014570E /* main.m in Sources */,
|
295
|
-
B7402C3016C2DD800014570E /* <%= config[:class_prefix] %>AppDelegate.m in Sources */,
|
296
|
-
);
|
297
|
-
runOnlyForDeploymentPostprocessing = 0;
|
298
|
-
};
|
299
|
-
B7402BE016C26CE70014570E /* Sources */ = {
|
300
|
-
isa = PBXSourcesBuildPhase;
|
301
|
-
buildActionMask = 2147483647;
|
302
|
-
files = (
|
303
|
-
B7402BFF16C26ED80014570E /* <%= config[:project_name] %>Tests.m in Sources */,
|
304
|
-
);
|
305
|
-
runOnlyForDeploymentPostprocessing = 0;
|
306
|
-
};
|
307
|
-
/* End PBXSourcesBuildPhase section */
|
308
|
-
|
309
|
-
/* Begin PBXTargetDependency section */
|
310
|
-
B7402BEB16C26CE70014570E /* PBXTargetDependency */ = {
|
311
|
-
isa = PBXTargetDependency;
|
312
|
-
target = B7402BC316C26CE70014570E /* <%= config[:target_name] %> */;
|
313
|
-
targetProxy = B7402BEA16C26CE70014570E /* PBXContainerItemProxy */;
|
314
|
-
};
|
315
|
-
/* End PBXTargetDependency section */
|
316
|
-
|
317
|
-
/* Begin PBXVariantGroup section */
|
318
|
-
B7402BD116C26CE70014570E /* InfoPlist.strings */ = {
|
319
|
-
isa = PBXVariantGroup;
|
320
|
-
children = (
|
321
|
-
B7402BD216C26CE70014570E /* en */,
|
322
|
-
);
|
323
|
-
name = InfoPlist.strings;
|
324
|
-
sourceTree = "<group>";
|
325
|
-
};
|
326
|
-
B7402BEF16C26CE70014570E /* InfoPlist.strings */ = {
|
327
|
-
isa = PBXVariantGroup;
|
328
|
-
children = (
|
329
|
-
B7402BF016C26CE70014570E /* en */,
|
330
|
-
);
|
331
|
-
name = InfoPlist.strings;
|
332
|
-
sourceTree = "<group>";
|
333
|
-
};
|
334
|
-
/* End PBXVariantGroup section */
|
335
|
-
|
336
|
-
/* Begin XCBuildConfiguration section */
|
337
|
-
B71B013617280481009B2A61 /* Testing */ = {
|
338
|
-
isa = XCBuildConfiguration;
|
339
|
-
baseConfigurationReference = B7402C1716C275930014570E /* fw-shared.xcconfig */;
|
340
|
-
buildSettings = {
|
341
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
342
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
343
|
-
CLANG_CXX_LIBRARY = "libc++";
|
344
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
345
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
346
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
347
|
-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
348
|
-
COPY_PHASE_STRIP = YES;
|
349
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
350
|
-
GCC_DYNAMIC_NO_PIC = NO;
|
351
|
-
GCC_OPTIMIZATION_LEVEL = 0;
|
352
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
353
|
-
"TESTING=1",
|
354
|
-
"$(inherited)",
|
355
|
-
);
|
356
|
-
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
357
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
358
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
359
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
360
|
-
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
|
361
|
-
SDKROOT = iphoneos;
|
362
|
-
TARGETED_DEVICE_FAMILY = "1,2";
|
363
|
-
VALIDATE_PRODUCT = YES;
|
364
|
-
};
|
365
|
-
name = Testing;
|
366
|
-
};
|
367
|
-
B71B013717280481009B2A61 /* Testing */ = {
|
368
|
-
isa = XCBuildConfiguration;
|
369
|
-
buildSettings = {
|
370
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
371
|
-
GCC_PREFIX_HEADER = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Prefix.pch";
|
372
|
-
INFOPLIST_FILE = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Info.plist";
|
373
|
-
INFOPLIST_PREFIX_HEADER = "<%= config[:target_name] %>/Supporting Files/info.plist.h";
|
374
|
-
INFOPLIST_PREPROCESS = YES;
|
375
|
-
PRODUCT_NAME = "<%= config[:binary_name] %>";
|
376
|
-
WRAPPER_EXTENSION = app;
|
377
|
-
};
|
378
|
-
name = Testing;
|
379
|
-
};
|
380
|
-
B71B013817280481009B2A61 /* Testing */ = {
|
381
|
-
isa = XCBuildConfiguration;
|
382
|
-
buildSettings = {
|
383
|
-
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/<%= config[:binary_name] %>.app/<%= config[:binary_name] %>";
|
384
|
-
FRAMEWORK_SEARCH_PATHS = (
|
385
|
-
"\"$(SDKROOT)/Developer/Library/Frameworks\"",
|
386
|
-
"\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"",
|
387
|
-
);
|
388
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
389
|
-
GCC_PREFIX_HEADER = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Prefix.pch";
|
390
|
-
INFOPLIST_FILE = "<%= config[:tests_target_name] %>/Supporting Files/<%= config[:tests_target_name] %>-Info.plist";
|
391
|
-
PRODUCT_NAME = "<%= config[:binary_name] %>Tests";
|
392
|
-
TEST_HOST = "$(BUNDLE_LOADER)";
|
393
|
-
WRAPPER_EXTENSION = octest;
|
394
|
-
};
|
395
|
-
name = Testing;
|
396
|
-
};
|
397
|
-
B7402BF516C26CE70014570E /* Debug */ = {
|
398
|
-
isa = XCBuildConfiguration;
|
399
|
-
baseConfigurationReference = B7402C1716C275930014570E /* fw-shared.xcconfig */;
|
400
|
-
buildSettings = {
|
401
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
402
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
403
|
-
CLANG_CXX_LIBRARY = "libc++";
|
404
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
405
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
406
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
407
|
-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
408
|
-
COPY_PHASE_STRIP = NO;
|
409
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
410
|
-
GCC_DYNAMIC_NO_PIC = NO;
|
411
|
-
GCC_OPTIMIZATION_LEVEL = 0;
|
412
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
413
|
-
"DEBUG=1",
|
414
|
-
"$(inherited)",
|
415
|
-
);
|
416
|
-
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
417
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
418
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
419
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
420
|
-
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
|
421
|
-
SDKROOT = iphoneos;
|
422
|
-
TARGETED_DEVICE_FAMILY = "1,2";
|
423
|
-
};
|
424
|
-
name = Debug;
|
425
|
-
};
|
426
|
-
B7402BF616C26CE70014570E /* Release */ = {
|
427
|
-
isa = XCBuildConfiguration;
|
428
|
-
baseConfigurationReference = B7402C1716C275930014570E /* fw-shared.xcconfig */;
|
429
|
-
buildSettings = {
|
430
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
431
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
432
|
-
CLANG_CXX_LIBRARY = "libc++";
|
433
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
434
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
435
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
436
|
-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
437
|
-
COPY_PHASE_STRIP = YES;
|
438
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
439
|
-
GCC_PREPROCESSOR_DEFINITIONS = "APPSTORE=1";
|
440
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
441
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
442
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
443
|
-
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
|
444
|
-
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
|
445
|
-
SDKROOT = iphoneos;
|
446
|
-
TARGETED_DEVICE_FAMILY = "1,2";
|
447
|
-
VALIDATE_PRODUCT = YES;
|
448
|
-
};
|
449
|
-
name = Release;
|
450
|
-
};
|
451
|
-
B7402BF816C26CE70014570E /* Debug */ = {
|
452
|
-
isa = XCBuildConfiguration;
|
453
|
-
buildSettings = {
|
454
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
455
|
-
GCC_PREFIX_HEADER = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Prefix.pch";
|
456
|
-
INFOPLIST_FILE = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Info.plist";
|
457
|
-
INFOPLIST_PREFIX_HEADER = "<%= config[:target_name] %>/Supporting Files/info.plist.h";
|
458
|
-
INFOPLIST_PREPROCESS = YES;
|
459
|
-
PRODUCT_NAME = "<%= config[:binary_name] %>";
|
460
|
-
WRAPPER_EXTENSION = app;
|
461
|
-
};
|
462
|
-
name = Debug;
|
463
|
-
};
|
464
|
-
B7402BF916C26CE70014570E /* Release */ = {
|
465
|
-
isa = XCBuildConfiguration;
|
466
|
-
buildSettings = {
|
467
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
468
|
-
GCC_PREFIX_HEADER = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Prefix.pch";
|
469
|
-
INFOPLIST_FILE = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Info.plist";
|
470
|
-
INFOPLIST_PREFIX_HEADER = "<%= config[:target_name] %>/Supporting Files/info.plist.h";
|
471
|
-
INFOPLIST_PREPROCESS = YES;
|
472
|
-
PRODUCT_NAME = "<%= config[:binary_name] %>";
|
473
|
-
WRAPPER_EXTENSION = app;
|
474
|
-
};
|
475
|
-
name = Release;
|
476
|
-
};
|
477
|
-
B7402BFB16C26CE70014570E /* Debug */ = {
|
478
|
-
isa = XCBuildConfiguration;
|
479
|
-
buildSettings = {
|
480
|
-
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/<%= config[:binary_name] %>.app/<%= config[:binary_name] %>";
|
481
|
-
FRAMEWORK_SEARCH_PATHS = (
|
482
|
-
"\"$(SDKROOT)/Developer/Library/Frameworks\"",
|
483
|
-
"\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"",
|
484
|
-
);
|
485
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
486
|
-
GCC_PREFIX_HEADER = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Prefix.pch";
|
487
|
-
INFOPLIST_FILE = "<%= config[:tests_target_name] %>/Supporting Files/<%= config[:tests_target_name] %>-Info.plist";
|
488
|
-
PRODUCT_NAME = "<%= config[:binary_name] %>Tests";
|
489
|
-
TEST_HOST = "$(BUNDLE_LOADER)";
|
490
|
-
WRAPPER_EXTENSION = octest;
|
491
|
-
};
|
492
|
-
name = Debug;
|
493
|
-
};
|
494
|
-
B7402BFC16C26CE70014570E /* Release */ = {
|
495
|
-
isa = XCBuildConfiguration;
|
496
|
-
buildSettings = {
|
497
|
-
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/<%= config[:binary_name] %>.app/<%= config[:binary_name] %>";
|
498
|
-
FRAMEWORK_SEARCH_PATHS = (
|
499
|
-
"\"$(SDKROOT)/Developer/Library/Frameworks\"",
|
500
|
-
"\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"",
|
501
|
-
);
|
502
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
503
|
-
GCC_PREFIX_HEADER = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>-Prefix.pch";
|
504
|
-
INFOPLIST_FILE = "<%= config[:tests_target_name] %>/Supporting Files/<%= config[:tests_target_name] %>-Info.plist";
|
505
|
-
PRODUCT_NAME = "<%= config[:binary_name] %>Tests";
|
506
|
-
TEST_HOST = "$(BUNDLE_LOADER)";
|
507
|
-
WRAPPER_EXTENSION = octest;
|
508
|
-
};
|
509
|
-
name = Release;
|
510
|
-
};
|
511
|
-
/* End XCBuildConfiguration section */
|
512
|
-
|
513
|
-
/* Begin XCConfigurationList section */
|
514
|
-
B7402BBE16C26CE70014570E /* Build configuration list for PBXProject "<%= config[:project_name] %>" */ = {
|
515
|
-
isa = XCConfigurationList;
|
516
|
-
buildConfigurations = (
|
517
|
-
B7402BF516C26CE70014570E /* Debug */,
|
518
|
-
B71B013617280481009B2A61 /* Testing */,
|
519
|
-
B7402BF616C26CE70014570E /* Release */,
|
520
|
-
);
|
521
|
-
defaultConfigurationIsVisible = 0;
|
522
|
-
defaultConfigurationName = Release;
|
523
|
-
};
|
524
|
-
B7402BF716C26CE70014570E /* Build configuration list for PBXNativeTarget "<%= config[:target_name] %>" */ = {
|
525
|
-
isa = XCConfigurationList;
|
526
|
-
buildConfigurations = (
|
527
|
-
B7402BF816C26CE70014570E /* Debug */,
|
528
|
-
B71B013717280481009B2A61 /* Testing */,
|
529
|
-
B7402BF916C26CE70014570E /* Release */,
|
530
|
-
);
|
531
|
-
defaultConfigurationIsVisible = 0;
|
532
|
-
defaultConfigurationName = Release;
|
533
|
-
};
|
534
|
-
B7402BFA16C26CE70014570E /* Build configuration list for PBXNativeTarget "<%= config[:tests_target_name] %>" */ = {
|
535
|
-
isa = XCConfigurationList;
|
536
|
-
buildConfigurations = (
|
537
|
-
B7402BFB16C26CE70014570E /* Debug */,
|
538
|
-
B71B013817280481009B2A61 /* Testing */,
|
539
|
-
B7402BFC16C26CE70014570E /* Release */,
|
540
|
-
);
|
541
|
-
defaultConfigurationIsVisible = 0;
|
542
|
-
defaultConfigurationName = Release;
|
543
|
-
};
|
544
|
-
/* End XCConfigurationList section */
|
545
|
-
};
|
546
|
-
rootObject = B7402BBB16C26CE70014570E /* Project object */;
|
547
|
-
}
|