learn-xcpretty 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/.kick +17 -0
  4. data/.travis.yml +18 -0
  5. data/CHANGELOG.md +152 -0
  6. data/CONTRIBUTING.md +60 -0
  7. data/Gemfile +8 -0
  8. data/LICENSE.txt +61 -0
  9. data/README.md +143 -0
  10. data/Rakefile +24 -0
  11. data/assets/report.html.erb +155 -0
  12. data/bin/learn-xcpretty +80 -0
  13. data/features/custom_formatter.feature +15 -0
  14. data/features/fixtures/xcodebuild.log +5963 -0
  15. data/features/html_report.feature +40 -0
  16. data/features/json_compilation_database_report.feature +21 -0
  17. data/features/junit_report.feature +44 -0
  18. data/features/knock_format.feature +11 -0
  19. data/features/simple_format.feature +172 -0
  20. data/features/steps/formatting_steps.rb +268 -0
  21. data/features/steps/html_steps.rb +23 -0
  22. data/features/steps/json_steps.rb +37 -0
  23. data/features/steps/junit_steps.rb +38 -0
  24. data/features/steps/report_steps.rb +21 -0
  25. data/features/steps/xcpretty_steps.rb +31 -0
  26. data/features/support/env.rb +108 -0
  27. data/features/tap_format.feature +31 -0
  28. data/features/test_format.feature +39 -0
  29. data/features/xcpretty.feature +14 -0
  30. data/learn-xcpretty.gemspec +37 -0
  31. data/lib/xcpretty/ansi.rb +71 -0
  32. data/lib/xcpretty/formatters/formatter.rb +134 -0
  33. data/lib/xcpretty/formatters/knock.rb +34 -0
  34. data/lib/xcpretty/formatters/rspec.rb +27 -0
  35. data/lib/xcpretty/formatters/simple.rb +155 -0
  36. data/lib/xcpretty/formatters/tap.rb +39 -0
  37. data/lib/xcpretty/parser.rb +421 -0
  38. data/lib/xcpretty/printer.rb +20 -0
  39. data/lib/xcpretty/reporters/html.rb +73 -0
  40. data/lib/xcpretty/reporters/json_compilation_database.rb +58 -0
  41. data/lib/xcpretty/reporters/junit.rb +99 -0
  42. data/lib/xcpretty/reporters/learn.rb +154 -0
  43. data/lib/xcpretty/snippet.rb +34 -0
  44. data/lib/xcpretty/syntax.rb +20 -0
  45. data/lib/xcpretty/version.rb +3 -0
  46. data/lib/xcpretty.rb +39 -0
  47. data/spec/fixtures/NSStringTests.m +64 -0
  48. data/spec/fixtures/constants.rb +546 -0
  49. data/spec/fixtures/custom_formatter.rb +17 -0
  50. data/spec/fixtures/oneliner.m +1 -0
  51. data/spec/fixtures/raw_kiwi_compilation_fail.txt +24 -0
  52. data/spec/fixtures/raw_kiwi_fail.txt +1896 -0
  53. data/spec/fixtures/raw_specta_fail.txt +3110 -0
  54. data/spec/spec_helper.rb +6 -0
  55. data/spec/support/matchers/colors.rb +20 -0
  56. data/spec/xcpretty/ansi_spec.rb +46 -0
  57. data/spec/xcpretty/formatters/formatter_spec.rb +113 -0
  58. data/spec/xcpretty/formatters/rspec_spec.rb +55 -0
  59. data/spec/xcpretty/formatters/simple_spec.rb +129 -0
  60. data/spec/xcpretty/parser_spec.rb +421 -0
  61. data/spec/xcpretty/printer_spec.rb +53 -0
  62. data/spec/xcpretty/snippet_spec.rb +39 -0
  63. data/spec/xcpretty/syntax_spec.rb +35 -0
  64. data/vendor/json_pure/COPYING +57 -0
  65. data/vendor/json_pure/LICENSE +340 -0
  66. data/vendor/json_pure/generator.rb +443 -0
  67. data/vendor/json_pure/parser.rb +364 -0
  68. metadata +261 -0
@@ -0,0 +1,3 @@
1
+ module XCPretty
2
+ VERSION = "0.1.11"
3
+ end
data/lib/xcpretty.rb ADDED
@@ -0,0 +1,39 @@
1
+ require 'xcpretty/version'
2
+ require 'xcpretty/printer'
3
+ require 'xcpretty/syntax'
4
+ require 'xcpretty/snippet'
5
+ require 'xcpretty/formatters/formatter'
6
+ require 'xcpretty/formatters/simple'
7
+ require 'xcpretty/formatters/rspec'
8
+ require 'xcpretty/formatters/knock'
9
+ require 'xcpretty/formatters/tap'
10
+ require 'xcpretty/reporters/junit'
11
+ require 'xcpretty/reporters/html'
12
+ require 'xcpretty/reporters/learn'
13
+ require 'xcpretty/reporters/json_compilation_database'
14
+
15
+ module XCPretty
16
+
17
+ def self.class_from_path(path)
18
+ source = File.read(path)
19
+ klass = eval(source, nil, path)
20
+ raise unless klass.is_a?(Class)
21
+ klass
22
+ end
23
+
24
+ def self.load_custom_formatter(path)
25
+ begin
26
+ $:.unshift File.dirname(path)
27
+ class_from_path(path)
28
+ rescue SyntaxError => e
29
+ exit_with_error("Expected formatter source file to return a class. #{e}")
30
+ end
31
+ end
32
+
33
+ def self.exit_with_error(message)
34
+ $stderr.puts "[!] #{message}"
35
+ exit 1
36
+ end
37
+
38
+ end
39
+
@@ -0,0 +1,64 @@
1
+ //
2
+ // NSStringTests.m
3
+ // SampleProject
4
+ //
5
+ // Created by Neil on 05/12/2012.
6
+ // Copyright (c) 2012 @mneorr | mneorr.com. All rights reserved.
7
+ //
8
+
9
+ #import "Kiwi.h"
10
+ #import "ObjectiveSugar.h"
11
+
12
+ SPEC_BEGIN(StringAdditions)
13
+
14
+ describe(@"Foundation-style functions", ^{
15
+
16
+ it(@"NSStringWithFormat makes NSString -stringWithFormat", ^{
17
+
18
+ [[NSStringWithFormat(@"This is %@", @1) should] equal:@"This is 1"];
19
+ });
20
+
21
+ });
22
+
23
+ describe(@"Additions", ^{
24
+
25
+ NSString *sentence = @"Jane Doe's going in a shop,and,yeah;";
26
+
27
+ it(@"-split splits by whitespace", ^{
28
+ [[[@" the\r\nquick brown\t \tfox\n" split] should] equal:@[@"the", @"quick", @"brown", @"fox"]];
29
+ });
30
+
31
+ it(@"-split: splits with given delimiter", ^{
32
+ [[[sentence split:@","] should] equal:@[@"Jane Doe's going in a shop", @"and", @"yeah;"]];
33
+ });
34
+
35
+ it(@"-split: splits with delimiter string, not just a char", ^{
36
+ [[[@"one / two / three" split:@" / "] should] equal:@[@"one", @"two", @"three"]];
37
+ });
38
+
39
+ it(@"contains string", ^{
40
+ [[@([sentence containsString:@"jane doe"]) should] beTrue];
41
+ });
42
+
43
+ context(@"CamelCase and snake_case", ^{
44
+
45
+ it(@"converts snake_cased to CamelCased", ^{
46
+ [[[@"snake_case" camelCase] should] equal:@"SnakeCase"];
47
+ });
48
+
49
+ it(@"handles correctly snake case on beginning and at the end", ^{
50
+ [[[@"_snake_case" camelCase] should] equal:@"SnakeCase"];
51
+ [[[@"snake_case_" camelCase] should] equal:@"SnakeCase"];
52
+ });
53
+
54
+ });
55
+
56
+ it(@"-strip strips whitespaces and newlines from both ends", ^{
57
+ [[[@" Look mo, no empties! " strip] should] equal:@"Look mo, no empties!"];
58
+ });
59
+
60
+ });
61
+
62
+
63
+
64
+ SPEC_END
@@ -0,0 +1,546 @@
1
+ # encoding: utf-8
2
+
3
+ KIWI = 'kiwi'
4
+ OCUNIT = 'ocunit'
5
+ SAMPLE_OCUNIT_TEST_RUN_BEGINNING = "Test Suite '/Users/musalj/Library/Developer/Xcode/DerivedData/ReactiveCocoa-eznxkbqvgfsnrvetemqloysuwagb/Build/Products/Test/ReactiveCocoaTests.octest(Tests)' started at 2013-12-10 07:04:33 +0000"
6
+ SAMPLE_KIWI_TEST_RUN_BEGINNING = "Test Suite 'ObjectiveRecordTests.xctest' started at 2013-12-10 06:15:39 +0000"
7
+ SAMPLE_SPECTA_TEST_RUN_BEGINNING = " Test Suite 'KIFTests.xctest' started at 2014-02-28 15:43:42 +0000"
8
+ SAMPLE_OCUNIT_TEST_RUN_COMPLETION = "Test Suite '/Users/musalj/Library/Developer/Xcode/DerivedData/ReactiveCocoa-eznxkbqvgfsnrvetemqloysuwagb/Build/Products/Test/ReactiveCocoaTests.octest(Tests)' finished at 2013-12-10 07:03:03 +0000."
9
+ SAMPLE_KIWI_TEST_RUN_COMPLETION = "Test Suite 'ObjectiveRecordTests.xctest' finished at 2013-12-10 06:15:42 +0000."
10
+ SAMPLE_SPECTA_TEST_RUN_COMPLETION = " Test Suite 'KIFTests.xctest' finished at 2014-02-28 15:44:32 +0000."
11
+
12
+ SAMPLE_OCUNIT_SUITE_BEGINNING = "Test Suite 'RACKVOWrapperSpec' started at 2013-12-10 21:06:10 +0000"
13
+ SAMPLE_SPECTA_SUITE_BEGINNING = " Test Suite 'All tests' started at 2014-02-28 19:07:41 +0000"
14
+ SAMPLE_KIWI_SUITE_COMPLETION = "Test Suite 'All tests' finished at 2013-12-08 04:26:49 +0000."
15
+ SAMPLE_OCUNIT_SUITE_COMPLETION = "Test Suite '/Users/musalj/Library/Developer/Xcode/DerivedData/ReactiveCocoa-eznxkbqvgfsnrvetemqloysuwagb/Build/Products/Test/ReactiveCocoaTests.octest(Tests)' finished at 2013-12-08 22:09:37 +0000."
16
+ SAMPLE_XCTEST_SUITE_COMPLETION = "Test Suite 'ObjectiveSugarTests.xctest' finished at 2013-12-09 04:42:13 +0000."
17
+
18
+ SAMPLE_KIWI_FAILURE = "/Users/musalj/code/OSS/ObjectiveSugar/Example/ObjectiveSugarTests/NSNumberTests.m:49: error: -[NumberAdditions Iterators_TimesIteratesTheExactNumberOfTimes] : 'Iterators, times: iterates the exact number of times' [FAILED], expected subject to equal 4, got 5"
19
+ SAMPLE_OLD_SPECTA_FAILURE = "/Users/musalj/code/OSS/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoaTests/RACCommandSpec.m:458: error: -[RACCommandSpec enabled_signal_should_send_YES_while_executing_is_YES_and_allowsConcurrentExecution_is_YES] : expected: 1, got: 0"
20
+ SAMPLE_SPECTA_FAILURE = " Test Case '-[SKWelcomeViewControllerSpecSpec SKWelcomeViewController_When_a_user_opens_the_app_from_a_clean_installation_displays_the_welcome_screen]' started. \n/Users/vickeryj/Code/ipad-register/KIFTests/Specs/SKWelcomeViewControllerSpec.m:11: error: -[SKWelcomeViewControllerSpecSpec SKWelcomeViewController_When_a_user_opens_the_app_from_a_clean_installation_displays_the_welcome_screen] : The step timed out after 2.00 seconds: Failed to find accessibility element with the label \"The asimplest way to make smarter business decisions\""
21
+
22
+ SAMPLE_BUILD = "=== BUILD TARGET The Spacer OF PROJECT Pods WITH THE DEFAULT CONFIGURATION Debug ==="
23
+ SAMPLE_CLEAN = "=== CLEAN TARGET Pods-ObjectiveSugar OF PROJECT Pods WITH CONFIGURATION Debug ==="
24
+ SAMPLE_ANOTHER_CLEAN = "=== CLEAN TARGET Pods OF PROJECT Pods WITH CONFIGURATION Debug ==="
25
+ SAMPLE_CLEAN_REMOVE = %Q(
26
+ Clean.Remove clean /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugarTests.build
27
+ builtin-rm -rf /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugarTests.build
28
+ )
29
+ SAMPLE_EXECUTED_TESTS = "Executed 4 tests, with 0 failures (0 unexpected) in 0.003 (0.004) seconds"
30
+ SAMPLE_SPECTA_EXECUTED_TESTS = " Executed 4 tests, with 0 failures (0 unexpected) in 10.192 (10.193) seconds"
31
+ SAMPLE_OCUNIT_TEST = "Test Case '-[RACCommandSpec enabled_signal_should_send_YES_while_executing_is_YES_and_allowsConcurrentExecution_is_YES]' passed (0.001 seconds)."
32
+ SAMPLE_SPECTA_TEST = " Test Case '-[SKWelcomeActivationViewControllerSpecSpec SKWelcomeActivationViewController_When_a_user_enters_their_details_lets_them_enter_a_valid_manager_code]' passed (0.725 seconds)."
33
+ SAMPLE_SLOWISH_TEST = "Test Case '-[RACCommandSpec enabled_signal_should_send_YES_while_executing_is_YES_and_allowsConcurrentExecution_is_YES]' passed (0.026 seconds)."
34
+ SAMPLE_SLOW_TEST = "Test Case '-[RACCommandSpec enabled_signal_should_send_YES_while_executing_is_YES_and_allowsConcurrentExecution_is_YES]' passed (0.101 seconds)."
35
+ SAMPLE_KIWI_TEST = "Test Case '-[MappingsTests Mappings_SupportsCreatingAParentObjectUsingJustIDFromTheServer]' passed (0.004 seconds)."
36
+ SAMPLE_PENDING_KIWI_TEST = "Test Case '-[TAPIConversationSpec TAPIConversation_createConversation_SendsAPOSTRequestToTheConversationsEndpointPENDING]' passed (0.001 seconds)."
37
+ SAMPLE_COMPILE = %Q(
38
+ CompileC /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Objects-normal/i386/NSMutableArray+ObjectiveSugar.o /Users/musalj/code/OSS/ObjectiveSugar/Classes/NSMutableArray+ObjectiveSugar.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler
39
+ cd /Users/musalj/code/OSS/ObjectiveSugar/Example/Pods
40
+ setenv LANG en_US.US-ASCII
41
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
42
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch i386 -fmessage-length=178 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -fcolor-diagnostics -std=gnu99 -fmodules -fmodules-cache-path=/Users/musalj/Library/Developer/Xcode/DerivedData/ModuleCache -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -fexceptions -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -fobjc-abi-version=2 -fobjc-legacy-dispatch -mios-simulator-version-min=5.0 -iquote /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Pods-ObjectiveSugar-generated-files.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Pods-ObjectiveSugar-own-target-headers.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Pods-ObjectiveSugar-all-target-headers.hmap -iquote /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Pods-ObjectiveSugar-project-headers.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/include -I/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/BuildHeaders -I/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/BuildHeaders/ObjectiveSugar -I/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/Headers -I/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/Headers/Kiwi -I/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/Headers/ObjectiveSugar -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/DerivedSources/i386 -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/DerivedSources -F/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator -include /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/PrecompiledHeaders/Pods-ObjectiveSugar-prefix-fbehxvikzshezadcwuseekuhbnus/Pods-ObjectiveSugar-prefix.pch -MMD -MT dependencies -MF /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Objects-normal/i386/NSMutableArray+ObjectiveSugar.d --serialize-diagnostics /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Objects-normal/i386/NSMutableArray+ObjectiveSugar.dia -c /Users/musalj/code/OSS/ObjectiveSugar/Classes/NSMutableArray+ObjectiveSugar.m -o /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugar.build/Objects-normal/i386/NSMutableArray+ObjectiveSugar.o
43
+ )
44
+ SAMPLE_ANOTHER_COMPILE = %Q(
45
+ CompileC /Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Objects-normal/i386/KWNull.o Classes/Core/KWNull.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler
46
+ cd /Users/musalj/code/OSS/Kiwi
47
+ setenv LANG en_US.US-ASCII
48
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
49
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch i386 -fmessage-length=178 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -fcolor-diagnostics -std=c99 -fobjc-arc -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wmissing-prototypes -Wno-implicit-atomic-properties -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wpointer-sign -Wnewline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -fexceptions -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -fobjc-abi-version=2 -fobjc-legacy-dispatch -mios-simulator-version-min=5.0 -iquote /Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Kiwi-generated-files.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Kiwi-own-target-headers.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Kiwi-all-target-headers.hmap -iquote /Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Kiwi-project-headers.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Products/Debug-iphonesimulator/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/DerivedSources/i386 -I/Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/DerivedSources -Wall -F/Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Products/Debug-iphonesimulator -F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/Developer/Library/Frameworks -F/Applications/Xcode.app/Contents/Developer/Library/Frameworks -include /Users/musalj/code/OSS/Kiwi/Supporting\ Files/Kiwi-Prefix.pch -MMD -MT dependencies -MF /Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Objects-normal/i386/KWNull.d --serialize-diagnostics /Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Objects-normal/i386/KWNull.dia -c /Users/musalj/code/OSS/Kiwi/Classes/Core/KWNull.m -o /Users/musalj/Library/Developer/Xcode/DerivedData/Kiwi-guimpeiqlepzeaankpygesetdzsx/Build/Intermediates/Kiwi.build/Debug-iphonesimulator/Kiwi.build/Objects-normal/i386/KWNull.o
50
+ )
51
+ SAMPLE_PRECOMPILE = %Q(
52
+ ProcessPCH /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/PrecompiledHeaders/Pods-CocoaLumberjack-prefix-aklsecopvqdctoeroyamrkgktpei/Pods-CocoaLumberjack-prefix.pch.pch Pods-CocoaLumberjack-prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler
53
+ cd /Users/musalj/code/OSS/ObjectiveRecord/Pods
54
+ setenv LANG en_US.US-ASCII
55
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/.rbenv/versions/2.0.0-p247/bin:/usr/local/Cellar/rbenv/0.4.0/libexec:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
56
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=178 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -fcolor-diagnostics -std=gnu99 -fmodules -fmodules-cache-path=/Users/musalj/Library/Developer/Xcode/DerivedData/ModuleCache -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -fexceptions -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -fobjc-abi-version=2 -fobjc-legacy-dispatch -mios-simulator-version-min=6.0 -iquote /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-CocoaLumberjack.build/Pods-CocoaLumberjack-generated-files.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-CocoaLumberjack.build/Pods-CocoaLumberjack-own-target-headers.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-CocoaLumberjack.build/Pods-CocoaLumberjack-all-target-headers.hmap -iquote /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-CocoaLumberjack.build/Pods-CocoaLumberjack-project-headers.hmap -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Products/Debug-iphonesimulator/include -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/BuildHeaders -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/BuildHeaders/CocoaLumberjack -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/ABContactHelper -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/AFNetworking -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/CocoaLumberjack -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/CrittercismSDK -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/DTCoreText -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/DTFoundation -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/HPGrowingTextView -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/Kiwi -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/MAKVONotificationCenter -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/MAKVONotificationCenter/MAKVONotificationCenter -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/MBSwitch -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/MBSwitch/MBSwitch -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/Reachability -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/SBJson -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/SSKeychain -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/TITokenField -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/YamDrawReport -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/YamKit -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/YamKit/YamCore -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/YamKit/YamData -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/YamKit/YamSerf -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/YamKit/YamUI -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/YamKitTests -I/Users/musalj/code/OSS/ObjectiveRecord/Pods/Headers/cometclient -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-CocoaLumberjack.build/DerivedSources/i386 -I/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-CocoaLumberjack.build/DerivedSources -F/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Products/Debug-iphonesimulator -fobjc-arc -DOS_OBJECT_USE_OBJC=0 --serialize-diagnostics /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/PrecompiledHeaders/Pods-CocoaLumberjack-prefix-aklsecopvqdctoeroyamrkgktpei/Pods-CocoaLumberjack-prefix.pch.dia -MMD -MT dependencies -MF /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/PrecompiledHeaders/Pods-CocoaLumberjack-prefix-aklsecopvqdctoeroyamrkgktpei/Pods-CocoaLumberjack-prefix.pch.d -c /Users/musalj/code/OSS/ObjectiveRecord/Pods/Pods-CocoaLumberjack-prefix.pch -o /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveRecord-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/PrecompiledHeaders/Pods-CocoaLumberjack-prefix-aklsecopvqdctoeroyamrkgktpei/Pods-CocoaLumberjack-prefix.pch.pch
57
+ )
58
+ SAMPLE_LIBTOOL = %Q(
59
+ Libtool /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/libPods-ObjectiveSugarTests-Kiwi.a normal i386
60
+ cd /Users/musalj/code/OSS/ObjectiveSugar/Example/Pods
61
+ setenv IPHONEOS_DEPLOYMENT_TARGET 5.0
62
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
63
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only i386 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -L/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator -filelist /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-ObjectiveSugarTests-Kiwi.build/Objects-normal/i386/Pods-ObjectiveSugarTests-Kiwi.LinkFileList -framework Foundation -framework SenTestingKit -o /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/libPods-ObjectiveSugarTests-Kiwi.a
64
+ )
65
+ SAMPLE_CPRESOURCE = %Q(
66
+ CpResource ObjectiveSugar/Default-568h@2x.png /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugar.app/Default-568h@2x.png
67
+ cd /Users/musalj/code/OSS/ObjectiveSugar/Example
68
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
69
+ builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/musalj/code/OSS/ObjectiveSugar/Example/ObjectiveSugar/Default-568h@2x.png /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugar.app
70
+ )
71
+ SAMPLE_COPYSTRINGS = %Q(
72
+ CopyStringsFile /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugar.app/en.lproj/InfoPlist.strings ObjectiveSugar/en.lproj/InfoPlist.strings
73
+ cd /Users/musalj/code/OSS/ObjectiveSugar/Example
74
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
75
+ builtin-copyStrings --validate --inputencoding utf-8 --outputencoding binary --outdir /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugar.app/en.lproj -- ObjectiveSugar/en.lproj/InfoPlist.strings
76
+ )
77
+ SAMPLE_PROCESS_INFOPLIST = %Q(
78
+ ProcessInfoPlistFile build/Release/The\\ Spacer.app/Contents/Info.plist The\\ Spacer/The\\ Spacer-Info.plist
79
+     cd "/Users/delisa/Code/Personal/The Spacer"
80
+     builtin-infoPlistUtility /Users/delisa/Code/Personal/The\\ Spacer/The\\ Spacer/The\\ Spacer-Info.plist -genpkginfo /Users/delisa/Code/Personal/The\\ Spacer/build/Release/The\\ Spacer.app/Contents/PkgInfo -expandbuildsettings -platform macosx -additionalcontentfile /Users/delisa/Code/Personal/The\\ Spacer/build/The\\ Spacer.build/Release/The\\ Spacer.build/assetcatalog_generated_info.plist -o /Users/delisa/Code/Personal/The\\ Spacer/build/Release/The\\ Spacer.app/Contents/Info.plist
81
+ )
82
+ SAMPLE_LD = %Q(
83
+ Ld /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugar.app/ObjectiveSugar normal i386
84
+ cd /Users/musalj/code/OSS/ObjectiveSugar/Example
85
+ setenv IPHONEOS_DEPLOYMENT_TARGET 4.3
86
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
87
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch i386 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -L/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator -F/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator -filelist /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Objects-normal/i386/ObjectiveSugar.LinkFileList -Xlinker -objc_abi_version -Xlinker 2 -ObjC -fobjc-arc -fobjc-link-runtime -Xlinker -no_implicit_dylibs -mios-simulator-version-min=4.3 -framework UIKit -framework Foundation -framework CoreGraphics -lPods -Xlinker -dependency_info -Xlinker /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Objects-normal/i386/ObjectiveSugar_dependency_info.dat -o /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugar.app/ObjectiveSugar
88
+ )
89
+ SAMPLE_DSYM = %Q(
90
+ GenerateDSYMFile /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugarTests.octest.dSYM /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugarTests.octest/ObjectiveSugarTests
91
+ cd /Users/musalj/code/OSS/ObjectiveSugar/Example
92
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
93
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugarTests.octest/ObjectiveSugarTests -o /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugarTests.octest.dSYM
94
+ )
95
+ SAMPLE_TOUCH = %Q(
96
+ Touch /Users/musalj/Library/Developer/Xcode/DerivedData/Alcatraz-aobuxcinaqyzjugrnxjjhfzgwaou/Build/Products/Debug/AlcatrazTests.octest
97
+ cd /Users/musalj/code/OSS/Alcatraz
98
+ /usr/bin/touch -c /Users/musalj/Library/Developer/Xcode/DerivedData/Alcatraz-aobuxcinaqyzjugrnxjjhfzgwaou/Build/Products/Debug/AlcatrazTests.octest
99
+ )
100
+ SAMPLE_TIFFUTIL = %Q(
101
+ TiffUtil eye_icon.tiff
102
+ cd /Users/musalj/code/OSS/Alcatraz
103
+ /usr/bin/tiffutil -cathidpicheck /Users/musalj/code/OSS/Alcatraz/Alcatraz/eye_icon@2x.png /Users/musalj/code/OSS/Alcatraz/Alcatraz/eye_icon.png -out /Users/musalj/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/Alcatraz.xcplugin/Contents/Resources/eye_icon.tiff
104
+ )
105
+ SAMPLE_RUN_SCRIPT = %Q(
106
+ PhaseScriptExecution Check\\ Pods\\ Manifest.lock /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Script-468DABF301EC4EC1A00CC4C2.sh
107
+ cd /Users/musalj/code/OSS/ObjectiveSugar/Example
108
+ setenv ACTION build
109
+ setenv AD_HOC_CODE_SIGNING_ALLOWED NO
110
+ setenv ALTERNATE_GROUP staff
111
+ setenv ALTERNATE_MODE u+w,go-w,a+rX
112
+ setenv ALTERNATE_OWNER musalj
113
+ setenv ALWAYS_SEARCH_USER_PATHS NO
114
+ setenv ALWAYS_USE_SEPARATE_HEADERMAPS YES
115
+ setenv APPLE_INTERNAL_DEVELOPER_DIR /AppleInternal/Developer
116
+ setenv APPLE_INTERNAL_DIR /AppleInternal
117
+ setenv APPLE_INTERNAL_DOCUMENTATION_DIR /AppleInternal/Documentation
118
+ setenv APPLE_INTERNAL_LIBRARY_DIR /AppleInternal/Library
119
+ setenv APPLE_INTERNAL_TOOLS /AppleInternal/Developer/Tools
120
+ setenv APPLY_RULES_IN_COPY_FILES NO
121
+ setenv ARCHS i386
122
+ setenv ARCHS_STANDARD i386
123
+ setenv ARCHS_STANDARD_32_64_BIT i386
124
+ setenv ARCHS_STANDARD_32_BIT i386
125
+ setenv ARCHS_STANDARD_64_BIT x86_64
126
+ setenv ARCHS_STANDARD_INCLUDING_64_BIT "i386 x86_64"
127
+ setenv AVAILABLE_PLATFORMS "iphonesimulator macosx iphoneos"
128
+ setenv BUILD_COMPONENTS "headers build"
129
+ setenv BUILD_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products
130
+ setenv BUILD_ROOT /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products
131
+ setenv BUILD_STYLE
132
+ setenv BUILD_VARIANTS normal
133
+ setenv BUILT_PRODUCTS_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator
134
+ setenv CACHE_ROOT /var/folders/dp/3hrp_j_j04b6gxk5tybq0lz80000gp/C/com.apple.DeveloperTools/5.0.2-5A3005/Xcode
135
+ setenv CCHROOT /var/folders/dp/3hrp_j_j04b6gxk5tybq0lz80000gp/C/com.apple.DeveloperTools/5.0.2-5A3005/Xcode
136
+ setenv CHMOD /bin/chmod
137
+ setenv CHOWN /usr/sbin/chown
138
+ setenv CLANG_CXX_LANGUAGE_STANDARD gnu++0x
139
+ setenv CLANG_CXX_LIBRARY libc++
140
+ setenv CLANG_ENABLE_OBJC_ARC YES
141
+ setenv CLANG_WARN_CONSTANT_CONVERSION YES
142
+ setenv CLANG_WARN_EMPTY_BODY YES
143
+ setenv CLANG_WARN_ENUM_CONVERSION YES
144
+ setenv CLANG_WARN_INT_CONVERSION YES
145
+ setenv CLANG_WARN__DUPLICATE_METHOD_MATCH YES
146
+ setenv CLASS_FILE_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/JavaClasses
147
+ setenv CLEAN_PRECOMPS YES
148
+ setenv CLONE_HEADERS NO
149
+ setenv CODESIGNING_FOLDER_PATH /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/ObjectiveSugar.app
150
+ setenv CODE_SIGNING_ALLOWED NO
151
+ setenv CODE_SIGN_CONTEXT_CLASS XCiPhoneSimulatorCodeSignContext
152
+ setenv CODE_SIGN_IDENTITY "iPhone Developer"
153
+ setenv COLOR_DIAGNOSTICS NO
154
+ setenv COMBINE_HIDPI_IMAGES NO
155
+ setenv COMMAND_MODE legacy
156
+ setenv COMPOSITE_SDK_DIRS /var/folders/dp/3hrp_j_j04b6gxk5tybq0lz80000gp/C/com.apple.DeveloperTools/5.0.2-5A3005/Xcode/CompositeSDKs
157
+ setenv COMPRESS_PNG_FILES YES
158
+ setenv CONFIGURATION Debug
159
+ setenv CONFIGURATION_BUILD_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator
160
+ setenv CONFIGURATION_TEMP_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator
161
+ setenv CONTENTS_FOLDER_PATH ObjectiveSugar.app
162
+ setenv COPYING_PRESERVES_HFS_DATA NO
163
+ setenv COPY_PHASE_STRIP NO
164
+ setenv COPY_RESOURCES_FROM_STATIC_FRAMEWORKS YES
165
+ setenv CP /bin/cp
166
+ setenv CREATE_INFOPLIST_SECTION_IN_BINARY NO
167
+ setenv CURRENT_ARCH i386
168
+ setenv CURRENT_VARIANT normal
169
+ setenv DEAD_CODE_STRIPPING NO
170
+ setenv DEBUGGING_SYMBOLS YES
171
+ setenv DEBUG_INFORMATION_FORMAT dwarf-with-dsym
172
+ setenv DEFAULT_COMPILER com.apple.compilers.llvm.clang.1_0
173
+ setenv DEFAULT_KEXT_INSTALL_PATH /System/Library/Extensions
174
+ setenv DEPLOYMENT_LOCATION NO
175
+ setenv DEPLOYMENT_POSTPROCESSING NO
176
+ setenv DERIVED_FILES_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/DerivedSources
177
+ setenv DERIVED_FILE_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/DerivedSources
178
+ setenv DERIVED_SOURCES_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/DerivedSources
179
+ setenv DEVELOPER_APPLICATIONS_DIR /Applications/Xcode.app/Contents/Developer/Applications
180
+ setenv DEVELOPER_BIN_DIR /Applications/Xcode.app/Contents/Developer/usr/bin
181
+ setenv DEVELOPER_DIR /Applications/Xcode.app/Contents/Developer
182
+ setenv DEVELOPER_FRAMEWORKS_DIR /Applications/Xcode.app/Contents/Developer/Library/Frameworks
183
+ setenv DEVELOPER_FRAMEWORKS_DIR_QUOTED /Applications/Xcode.app/Contents/Developer/Library/Frameworks
184
+ setenv DEVELOPER_LIBRARY_DIR /Applications/Xcode.app/Contents/Developer/Library
185
+ setenv DEVELOPER_SDK_DIR /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
186
+ setenv DEVELOPER_TOOLS_DIR /Applications/Xcode.app/Contents/Developer/Tools
187
+ setenv DEVELOPER_USR_DIR /Applications/Xcode.app/Contents/Developer/usr
188
+ setenv DEVELOPMENT_LANGUAGE English
189
+ setenv DOCUMENTATION_FOLDER_PATH ObjectiveSugar.app/English.lproj/Documentation
190
+ setenv DO_HEADER_SCANNING_IN_JAM NO
191
+ setenv DSTROOT /tmp/ObjectiveSugar.dst
192
+ setenv DT_TOOLCHAIN_DIR /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
193
+ setenv DWARF_DSYM_FILE_NAME ObjectiveSugar.app.dSYM
194
+ setenv DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT NO
195
+ setenv DWARF_DSYM_FOLDER_PATH /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator
196
+ setenv EFFECTIVE_PLATFORM_NAME -iphonesimulator
197
+ setenv ENABLE_HEADER_DEPENDENCIES YES
198
+ setenv EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS ".DS_Store .svn .git .hg CVS"
199
+ setenv EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES "*.nib *.lproj *.framework *.gch (*) .DS_Store CVS .svn .git .hg *.xcodeproj *.xcode *.pbproj *.pbxproj"
200
+ setenv EXECUTABLES_FOLDER_PATH ObjectiveSugar.app/Executables
201
+ setenv EXECUTABLE_FOLDER_PATH ObjectiveSugar.app
202
+ setenv EXECUTABLE_NAME ObjectiveSugar
203
+ setenv EXECUTABLE_PATH ObjectiveSugar.app/ObjectiveSugar
204
+ setenv FILE_LIST /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Objects/LinkFileList
205
+ setenv FIXED_FILES_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/FixedFiles
206
+ setenv FRAMEWORKS_FOLDER_PATH ObjectiveSugar.app/Frameworks
207
+ setenv FRAMEWORK_FLAG_PREFIX -framework
208
+ setenv FRAMEWORK_SEARCH_PATHS "/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator "
209
+ setenv FRAMEWORK_VERSION A
210
+ setenv FULL_PRODUCT_NAME ObjectiveSugar.app
211
+ setenv GCC3_VERSION 3.3
212
+ setenv GCC_C_LANGUAGE_STANDARD gnu99
213
+ setenv GCC_DYNAMIC_NO_PIC NO
214
+ setenv GCC_INLINES_ARE_PRIVATE_EXTERN YES
215
+ setenv GCC_OBJC_LEGACY_DISPATCH YES
216
+ setenv GCC_OPTIMIZATION_LEVEL 0
217
+ setenv GCC_PFE_FILE_C_DIALECTS "c objective-c c++ objective-c++"
218
+ setenv GCC_PRECOMPILE_PREFIX_HEADER YES
219
+ setenv GCC_PREFIX_HEADER ObjectiveSugar/ObjectiveSugar-Prefix.pch
220
+ setenv GCC_PREPROCESSOR_DEFINITIONS "DEBUG=1 COCOAPODS=1"
221
+ setenv GCC_SYMBOLS_PRIVATE_EXTERN NO
222
+ setenv GCC_TREAT_WARNINGS_AS_ERRORS NO
223
+ setenv GCC_VERSION com.apple.compilers.llvm.clang.1_0
224
+ setenv GCC_VERSION_IDENTIFIER com_apple_compilers_llvm_clang_1_0
225
+ setenv GCC_WARN_ABOUT_RETURN_TYPE YES
226
+ setenv GCC_WARN_UNINITIALIZED_AUTOS YES
227
+ setenv GCC_WARN_UNUSED_VARIABLE YES
228
+ setenv GENERATE_MASTER_OBJECT_FILE NO
229
+ setenv GENERATE_PKGINFO_FILE YES
230
+ setenv GENERATE_PROFILING_CODE NO
231
+ setenv GID 20
232
+ setenv GROUP staff
233
+ setenv HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT YES
234
+ setenv HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES YES
235
+ setenv HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS YES
236
+ setenv HEADERMAP_INCLUDES_PROJECT_HEADERS YES
237
+ setenv HEADER_SEARCH_PATHS "/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/include \"/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/Headers\" \"/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/Headers/Kiwi\" \"/Users/musalj/code/OSS/ObjectiveSugar/Example/Pods/Headers/ObjectiveSugar\""
238
+ setenv ICONV /usr/bin/iconv
239
+ setenv INFOPLIST_EXPAND_BUILD_SETTINGS YES
240
+ setenv INFOPLIST_FILE ObjectiveSugar/ObjectiveSugar-Info.plist
241
+ setenv INFOPLIST_OUTPUT_FORMAT binary
242
+ setenv INFOPLIST_PATH ObjectiveSugar.app/Info.plist
243
+ setenv INFOPLIST_PREPROCESS NO
244
+ setenv INFOSTRINGS_PATH ObjectiveSugar.app/English.lproj/InfoPlist.strings
245
+ setenv INSTALL_DIR /tmp/ObjectiveSugar.dst/Applications
246
+ setenv INSTALL_GROUP staff
247
+ setenv INSTALL_MODE_FLAG u+w,go-w,a+rX
248
+ setenv INSTALL_OWNER musalj
249
+ setenv INSTALL_PATH /Applications
250
+ setenv INSTALL_ROOT /tmp/ObjectiveSugar.dst
251
+ setenv IPHONEOS_DEPLOYMENT_TARGET 4.3
252
+ setenv JAVAC_DEFAULT_FLAGS "-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
253
+ setenv JAVA_APP_STUB /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
254
+ setenv JAVA_ARCHIVE_CLASSES YES
255
+ setenv JAVA_ARCHIVE_TYPE JAR
256
+ setenv JAVA_COMPILER /usr/bin/javac
257
+ setenv JAVA_FOLDER_PATH ObjectiveSugar.app/Java
258
+ setenv JAVA_FRAMEWORK_RESOURCES_DIRS Resources
259
+ setenv JAVA_JAR_FLAGS cv
260
+ setenv JAVA_SOURCE_SUBDIR .
261
+ setenv JAVA_USE_DEPENDENCIES YES
262
+ setenv JAVA_ZIP_FLAGS -urg
263
+ setenv JIKES_DEFAULT_FLAGS "+E +OLDCSO"
264
+ setenv KEEP_PRIVATE_EXTERNS NO
265
+ setenv LD_DEPENDENCY_INFO_FILE /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Objects-normal/i386/ObjectiveSugar_dependency_info.dat
266
+ setenv LD_GENERATE_MAP_FILE NO
267
+ setenv LD_MAP_FILE_PATH /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/ObjectiveSugar-LinkMap-normal-i386.txt
268
+ setenv LD_NO_PIE NO
269
+ setenv LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER YES
270
+ setenv LEGACY_DEVELOPER_DIR /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
271
+ setenv LEX lex
272
+ setenv LIBRARY_FLAG_NOSPACE YES
273
+ setenv LIBRARY_FLAG_PREFIX -l
274
+ setenv LIBRARY_KEXT_INSTALL_PATH /Library/Extensions
275
+ setenv LIBRARY_SEARCH_PATHS "/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator "
276
+ setenv LINKER_DISPLAYS_MANGLED_NAMES NO
277
+ setenv LINK_FILE_LIST_normal_i386 /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Objects-normal/i386/ObjectiveSugar.LinkFileList
278
+ setenv LINK_WITH_STANDARD_LIBRARIES YES
279
+ setenv LOCALIZED_RESOURCES_FOLDER_PATH ObjectiveSugar.app/English.lproj
280
+ setenv LOCAL_ADMIN_APPS_DIR /Applications/Utilities
281
+ setenv LOCAL_APPS_DIR /Applications
282
+ setenv LOCAL_DEVELOPER_DIR /Library/Developer
283
+ setenv LOCAL_LIBRARY_DIR /Library
284
+ setenv MACH_O_TYPE mh_execute
285
+ setenv MACOSX_DEPLOYMENT_TARGET 10.6
286
+ setenv MAC_OS_X_PRODUCT_BUILD_VERSION 13A603
287
+ setenv MAC_OS_X_VERSION_ACTUAL 1090
288
+ setenv MAC_OS_X_VERSION_MAJOR 1090
289
+ setenv MAC_OS_X_VERSION_MINOR 0900
290
+ setenv MODULE_CACHE_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ModuleCache
291
+ setenv NATIVE_ARCH i386
292
+ setenv NATIVE_ARCH_32_BIT i386
293
+ setenv NATIVE_ARCH_64_BIT x86_64
294
+ setenv NATIVE_ARCH_ACTUAL x86_64
295
+ setenv NO_COMMON YES
296
+ setenv OBJC_ABI_VERSION 2
297
+ setenv OBJECT_FILE_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Objects
298
+ setenv OBJECT_FILE_DIR_normal /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Objects-normal
299
+ setenv OBJROOT /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates
300
+ setenv ONLY_ACTIVE_ARCH NO
301
+ setenv OPTIMIZATION_LEVEL 0
302
+ setenv OS MACOS
303
+ setenv OSAC /usr/bin/osacompile
304
+ setenv OTHER_LDFLAGS -ObjC
305
+ setenv PACKAGE_TYPE com.apple.package-type.wrapper.application
306
+ setenv PASCAL_STRINGS YES
307
+ setenv PATH "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Users/musalj/code/go/bin:/Users/musalj/.rbenv/shims:/Users/musalj/.rbenv/bin:/usr/local/share/npm/bin:/usr/local/bin:/Library/Python/2.7/bin:/usr/bin:/bin:/usr/sbin:/sbin"
308
+ setenv PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES "/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
309
+ setenv PBDEVELOPMENTPLIST_PATH ObjectiveSugar.app/pbdevelopment.plist
310
+ setenv PFE_FILE_C_DIALECTS objective-c
311
+ setenv PKGINFO_FILE_PATH /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/PkgInfo
312
+ setenv PKGINFO_PATH ObjectiveSugar.app/PkgInfo
313
+ setenv PLATFORM_DEVELOPER_APPLICATIONS_DIR /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
314
+ setenv PLATFORM_DEVELOPER_BIN_DIR /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
315
+ setenv PLATFORM_DEVELOPER_LIBRARY_DIR /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
316
+ setenv PLATFORM_DEVELOPER_SDK_DIR /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
317
+ setenv PLATFORM_DEVELOPER_TOOLS_DIR /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
318
+ setenv PLATFORM_DEVELOPER_USR_DIR /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
319
+ setenv PLATFORM_DIR /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
320
+ setenv PLATFORM_NAME iphonesimulator
321
+ setenv PLATFORM_PREFERRED_ARCH i386
322
+ setenv PLATFORM_PRODUCT_BUILD_VERSION 11B508
323
+ setenv PLATFORM_VERSION_AVAILABILITY_H_FORMAT 70000
324
+ setenv PLIST_FILE_OUTPUT_FORMAT binary
325
+ setenv PLUGINS_FOLDER_PATH ObjectiveSugar.app/PlugIns
326
+ setenv PODS_ROOT /Users/musalj/code/OSS/ObjectiveSugar/Example/Pods
327
+ setenv PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR YES
328
+ setenv PRECOMP_DESTINATION_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/PrefixHeaders
329
+ setenv PRESERVE_DEAD_CODE_INITS_AND_TERMS NO
330
+ setenv PRIVATE_HEADERS_FOLDER_PATH ObjectiveSugar.app/PrivateHeaders
331
+ setenv PRODUCT_NAME ObjectiveSugar
332
+ setenv PRODUCT_SETTINGS_PATH /Users/musalj/code/OSS/ObjectiveSugar/Example/ObjectiveSugar/ObjectiveSugar-Info.plist
333
+ setenv PRODUCT_TYPE com.apple.product-type.application
334
+ setenv PROFILING_CODE NO
335
+ setenv PROJECT ObjectiveSugar
336
+ setenv PROJECT_DERIVED_FILE_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/DerivedSources
337
+ setenv PROJECT_DIR /Users/musalj/code/OSS/ObjectiveSugar/Example
338
+ setenv PROJECT_FILE_PATH /Users/musalj/code/OSS/ObjectiveSugar/Example/ObjectiveSugar.xcodeproj
339
+ setenv PROJECT_NAME ObjectiveSugar
340
+ setenv PROJECT_TEMP_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build
341
+ setenv PROJECT_TEMP_ROOT /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates
342
+ setenv PUBLIC_HEADERS_FOLDER_PATH ObjectiveSugar.app/Headers
343
+ setenv RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS YES
344
+ setenv REMOVE_CVS_FROM_RESOURCES YES
345
+ setenv REMOVE_GIT_FROM_RESOURCES YES
346
+ setenv REMOVE_HG_FROM_RESOURCES YES
347
+ setenv REMOVE_SVN_FROM_RESOURCES YES
348
+ setenv REZ_COLLECTOR_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/ResourceManagerResources
349
+ setenv REZ_OBJECTS_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/ResourceManagerResources/Objects
350
+ setenv REZ_SEARCH_PATHS "/Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator "
351
+ setenv SCAN_ALL_SOURCE_FILES_FOR_INCLUDES NO
352
+ setenv SCRIPTS_FOLDER_PATH ObjectiveSugar.app/Scripts
353
+ setenv SCRIPT_INPUT_FILE_COUNT 0
354
+ setenv SCRIPT_OUTPUT_FILE_COUNT 0
355
+ setenv SDKROOT /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk
356
+ setenv SDK_DIR /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk
357
+ setenv SDK_NAME iphonesimulator7.0
358
+ setenv SDK_PRODUCT_BUILD_VERSION 11B508
359
+ setenv SED /usr/bin/sed
360
+ setenv SEPARATE_STRIP NO
361
+ setenv SEPARATE_SYMBOL_EDIT NO
362
+ setenv SET_DIR_MODE_OWNER_GROUP YES
363
+ setenv SET_FILE_MODE_OWNER_GROUP NO
364
+ setenv SHALLOW_BUNDLE YES
365
+ setenv SHARED_DERIVED_FILE_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator/DerivedSources
366
+ setenv SHARED_FRAMEWORKS_FOLDER_PATH ObjectiveSugar.app/SharedFrameworks
367
+ setenv SHARED_PRECOMPS_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/PrecompiledHeaders
368
+ setenv SHARED_SUPPORT_FOLDER_PATH ObjectiveSugar.app/SharedSupport
369
+ setenv SKIP_INSTALL NO
370
+ setenv SOURCE_ROOT /Users/musalj/code/OSS/ObjectiveSugar/Example
371
+ setenv SRCROOT /Users/musalj/code/OSS/ObjectiveSugar/Example
372
+ setenv STRINGS_FILE_OUTPUT_ENCODING binary
373
+ setenv STRIP_INSTALLED_PRODUCT YES
374
+ setenv STRIP_STYLE all
375
+ setenv SUPPORTED_DEVICE_FAMILIES "1 2"
376
+ setenv SUPPORTED_PLATFORMS "iphonesimulator iphoneos"
377
+ setenv SYMROOT /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products
378
+ setenv SYSTEM_ADMIN_APPS_DIR /Applications/Utilities
379
+ setenv SYSTEM_APPS_DIR /Applications
380
+ setenv SYSTEM_CORE_SERVICES_DIR /System/Library/CoreServices
381
+ setenv SYSTEM_DEMOS_DIR /Applications/Extras
382
+ setenv SYSTEM_DEVELOPER_APPS_DIR /Applications/Xcode.app/Contents/Developer/Applications
383
+ setenv SYSTEM_DEVELOPER_BIN_DIR /Applications/Xcode.app/Contents/Developer/usr/bin
384
+ setenv SYSTEM_DEVELOPER_DEMOS_DIR "/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
385
+ setenv SYSTEM_DEVELOPER_DIR /Applications/Xcode.app/Contents/Developer
386
+ setenv SYSTEM_DEVELOPER_DOC_DIR "/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
387
+ setenv SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR "/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
388
+ setenv SYSTEM_DEVELOPER_JAVA_TOOLS_DIR "/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
389
+ setenv SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR "/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
390
+ setenv SYSTEM_DEVELOPER_RELEASENOTES_DIR "/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
391
+ setenv SYSTEM_DEVELOPER_TOOLS /Applications/Xcode.app/Contents/Developer/Tools
392
+ setenv SYSTEM_DEVELOPER_TOOLS_DOC_DIR "/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
393
+ setenv SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR "/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
394
+ setenv SYSTEM_DEVELOPER_USR_DIR /Applications/Xcode.app/Contents/Developer/usr
395
+ setenv SYSTEM_DEVELOPER_UTILITIES_DIR /Applications/Xcode.app/Contents/Developer/Applications/Utilities
396
+ setenv SYSTEM_DOCUMENTATION_DIR /Library/Documentation
397
+ setenv SYSTEM_KEXT_INSTALL_PATH /System/Library/Extensions
398
+ setenv SYSTEM_LIBRARY_DIR /System/Library
399
+ setenv TARGETED_DEVICE_FAMILY 1
400
+ setenv TARGETNAME ObjectiveSugar
401
+ setenv TARGET_BUILD_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Products/Debug-iphonesimulator
402
+ setenv TARGET_NAME ObjectiveSugar
403
+ setenv TARGET_TEMP_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build
404
+ setenv TEMP_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build
405
+ setenv TEMP_FILES_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build
406
+ setenv TEMP_FILE_DIR /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build
407
+ setenv TEMP_ROOT /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates
408
+ setenv TOOLCHAINS com.apple.dt.toolchain.XcodeDefault
409
+ setenv UID 502
410
+ setenv UNLOCALIZED_RESOURCES_FOLDER_PATH ObjectiveSugar.app
411
+ setenv UNSTRIPPED_PRODUCT NO
412
+ setenv USER musalj
413
+ setenv USER_APPS_DIR /Users/musalj/Applications
414
+ setenv USER_LIBRARY_DIR /Users/musalj/Library
415
+ setenv USE_DYNAMIC_NO_PIC YES
416
+ setenv USE_HEADERMAP YES
417
+ setenv USE_HEADER_SYMLINKS NO
418
+ setenv VALIDATE_PRODUCT NO
419
+ setenv VALID_ARCHS i386
420
+ setenv VERBOSE_PBXCP NO
421
+ setenv VERSIONPLIST_PATH ObjectiveSugar.app/version.plist
422
+ setenv VERSION_INFO_BUILDER musalj
423
+ setenv VERSION_INFO_FILE ObjectiveSugar_vers.c
424
+ setenv VERSION_INFO_STRING "\"@(#)PROGRAM:ObjectiveSugar PROJECT:ObjectiveSugar-\""
425
+ setenv WRAPPER_EXTENSION app
426
+ setenv WRAPPER_NAME ObjectiveSugar.app
427
+ setenv WRAPPER_SUFFIX .app
428
+ setenv XCODE_APP_SUPPORT_DIR /Applications/Xcode.app/Contents/Developer/Library/Xcode
429
+ setenv XCODE_PRODUCT_BUILD_VERSION 5A3005
430
+ setenv XCODE_VERSION_ACTUAL 0502
431
+ setenv XCODE_VERSION_MAJOR 0500
432
+ setenv XCODE_VERSION_MINOR 0500
433
+ setenv XPCSERVICES_FOLDER_PATH ObjectiveSugar.app/XPCServices
434
+ setenv YACC yacc
435
+ setenv arch i386
436
+ setenv variant normal
437
+ /bin/sh -c /Users/musalj/Library/Developer/Xcode/DerivedData/ObjectiveSugar-ayzdhqmmwtqgysdpznmovjlupqjy/Build/Intermediates/ObjectiveSugar.build/Debug-iphonesimulator/ObjectiveSugar.build/Script-468DABF301EC4EC1A00CC4C2.sh
438
+ )
439
+ SAMPLE_ANALYZE = %Q(
440
+ Analyze CocoaChip/CCChip8DisplayView.m
441
+ cd /Users/dustin/Source/CocoaChip
442
+ setenv LANG en_US.US-ASCII
443
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=107 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -fcolor-diagnostics -std=gnu99 -fobjc-arc -Wno-trigraphs -fpascal-strings -Os -Werror -Wmissing-field-initializers -Wmissing-prototypes -Wno-implicit-atomic-properties -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wsign-compare -Wshorten-64-to-32 -Wpointer-sign -Wnewline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.7 -g -fvisibility=hidden -Wno-sign-conversion -D__clang_analyzer__ -Xclang -analyzer-output=plist-multi-file -Xclang -analyzer-config -Xclang path-diagnostics-alternate=true -Xclang -analyzer-config -Xclang report-in-main-source-file=true -Xclang -analyzer-checker -Xclang security.insecureAPI.UncheckedReturn -Xclang -analyzer-checker -Xclang security.insecureAPI.getpw -Xclang -analyzer-checker -Xclang security.insecureAPI.gets -Xclang -analyzer-checker -Xclang security.insecureAPI.mkstemp -Xclang -analyzer-checker -Xclang security.insecureAPI.mktemp -Xclang -analyzer-disable-checker -Xclang security.insecureAPI.rand -Xclang -analyzer-disable-checker -Xclang security.insecureAPI.strcpy -Xclang -analyzer-checker -Xclang security.insecureAPI.vfork -iquote /Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-generated-files.hmap -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-own-target-headers.hmap -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-all-target-headers.hmap -iquote /Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-project-headers.hmap -I/Users/dustin/Source/CocoaChip/build/Release/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/DerivedSources/x86_64 -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/DerivedSources -F/Users/dustin/Source/CocoaChip/build/Release -include /var/folders/nn/s88k060x7016ccml2bc6f5_h0000gn/C/com.apple.DeveloperTools/5.0.2-5A3005/Xcode/SharedPrecompiledHeaders/CocoaChip-Prefix-cqqikmscxiepjgdcrgpysqicucyu/CocoaChip-Prefix.pch --analyze /Users/dustin/Source/CocoaChip/CocoaChip/CCChip8DisplayView.m -o /Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/StaticAnalyzer/CocoaChip/CocoaChip/normal/x86_64/CCChip8DisplayView.plist
444
+ )
445
+ SAMPLE_ANALYZE_SHALLOW = %Q(
446
+ AnalyzeShallow CocoaChip/CCChip8DisplayView.m
447
+ cd /Users/dustin/Source/CocoaChip
448
+ setenv LANG en_US.US-ASCII
449
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=107 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -fcolor-diagnostics -std=gnu99 -fobjc-arc -Wno-trigraphs -fpascal-strings -Os -Werror -Wmissing-field-initializers -Wmissing-prototypes -Wno-implicit-atomic-properties -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wsign-compare -Wshorten-64-to-32 -Wpointer-sign -Wnewline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.7 -g -fvisibility=hidden -Wno-sign-conversion -D__clang_analyzer__ -Xclang -analyzer-output=plist-multi-file -Xclang -analyzer-config -Xclang path-diagnostics-alternate=true -Xclang -analyzer-config -Xclang report-in-main-source-file=true -Xclang -analyzer-config -Xclang mode=shallow -Xclang -analyzer-checker -Xclang security.insecureAPI.UncheckedReturn -Xclang -analyzer-checker -Xclang security.insecureAPI.getpw -Xclang -analyzer-checker -Xclang security.insecureAPI.gets -Xclang -analyzer-checker -Xclang security.insecureAPI.mkstemp -Xclang -analyzer-checker -Xclang security.insecureAPI.mktemp -Xclang -analyzer-disable-checker -Xclang security.insecureAPI.rand -Xclang -analyzer-disable-checker -Xclang security.insecureAPI.strcpy -Xclang -analyzer-checker -Xclang security.insecureAPI.vfork -iquote /Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-generated-files.hmap -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-own-target-headers.hmap -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-all-target-headers.hmap -iquote /Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/CocoaChip-project-headers.hmap -I/Users/dustin/Source/CocoaChip/build/Release/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/DerivedSources/x86_64 -I/Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/DerivedSources -F/Users/dustin/Source/CocoaChip/build/Release -include /var/folders/nn/s88k060x7016ccml2bc6f5_h0000gn/C/com.apple.DeveloperTools/5.0.2-5A3005/Xcode/SharedPrecompiledHeaders/CocoaChip-Prefix-dzmrdzscqkbvvrafvxsbjwbxtmlz/CocoaChip-Prefix.pch --analyze /Users/dustin/Source/CocoaChip/CocoaChip/CCChip8DisplayView.m -o /Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/StaticAnalyzer/CocoaChip/CocoaChip/normal/x86_64/CCChip8DisplayView.plist
450
+ )
451
+ SAMPLE_COMPILE_XIB = %Q(
452
+ CompileXIB CocoaChip/en.lproj/MainMenu.xib
453
+ cd /Users/dustin/Source/CocoaChip
454
+ setenv XCODE_DEVELOPER_USR_PATH /Applications/Xcode.app/Contents/Developer/usr/bin/..
455
+ /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --minimum-deployment-target 10.7 --output-format human-readable-text --compile /Users/dustin/Source/CocoaChip/build/Release/CocoaChip.app/Contents/Resources/en.lproj/MainMenu.nib /Users/dustin/Source/CocoaChip/CocoaChip/en.lproj/MainMenu.xib
456
+ )
457
+ SAMPLE_CODESIGN = %Q(
458
+ CodeSign build/Release/CocoaChip.app
459
+ cd /Users/dustin/Source/CocoaChip
460
+ setenv CODESIGN_ALLOCATE /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
461
+ Using code signing identity \"Mac Developer: John Smith (0123456789)\"
462
+ /usr/bin/codesign --force --sign 0123456789ABCDEF0123456789ABCDEF01234567 /Users/dustin/Source/CocoaChip/build/Release/CocoaChip.app
463
+ )
464
+ SAMPLE_CODESIGN_FRAMEWORK = %Q(
465
+ CodeSign build/Release/CocoaChipCore.framework/Versions/A
466
+ cd /Users/dustin/Source/CocoaChip
467
+ setenv CODESIGN_ALLOCATE /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
468
+ Using code signing identity "Mac Developer: John Smith (0123456789)"
469
+ /usr/bin/codesign --force --sign 0123456789ABCDEF0123456789ABCDEF01234567 /Users/dustin/Source/CocoaChip/build/Release/CocoaChipCore.framework/Versions/A
470
+ )
471
+ SAMPLE_PREPROCESS = %Q(
472
+ Preprocess build/CocoaChip.build/Release/CocoaChip.build/Preprocessed-Info.plist CocoaChip/CocoaChip-Info.plist
473
+ cd /Users/dustin/Source/CocoaChip
474
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -E -P -x c -Wno-trigraphs /Users/dustin/Source/CocoaChip/CocoaChip/CocoaChip-Info.plist -F/Users/dustin/Source/CocoaChip/build/Release -o /Users/dustin/Source/CocoaChip/build/CocoaChip.build/Release/CocoaChip.build/Preprocessed-Info.plist
475
+ )
476
+ SAMPLE_PBXCP = %Q(
477
+ PBXCp build/Release/CocoaChipCore.framework build/Release/CocoaChip.app/Contents/Frameworks/CocoaChipCore.framework
478
+ cd /Users/dustin/Source/CocoaChip
479
+ builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-debug-symbols -strip-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks /Users/dustin/Source/CocoaChip/build/Release/CocoaChipCore.framework /Users/dustin/Source/CocoaChip/build/Release/CocoaChip.app/Contents/Frameworks
480
+ warning: skipping copy phase strip, binary is code signed: /Users/dustin/Source/CocoaChip/build/Release/CocoaChipCore.framework/Versions/A/CocoaChipCore
481
+ )
482
+
483
+
484
+ ################################################################################
485
+ # ERRORS
486
+ ################################################################################
487
+
488
+ SAMPLE_PODS_ERROR = "error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation."
489
+
490
+ SAMPLE_COMPILE_ERROR = %Q(
491
+ /Users/musalj/code/OSS/SampleApp/SampleTest.m:12:59: error: expected identifier
492
+ [[thread.lastMessage should] equal:thread.];
493
+ ^
494
+ )
495
+
496
+ SAMPLE_CODESIGN_ERROR = %Q(
497
+ Code Sign error: No code signing identites found: No valid signing identities (i.e. certificate and private key pair) matching the team ID “CAT6HF57NJ” were found.
498
+ )
499
+
500
+ SAMPLE_CODESIGN_ERROR_NO_SPACES = %Q(
501
+ CodeSign error: code signing is required for product type 'Application' in SDK 'iOS 7.0'
502
+ )
503
+
504
+ SAMPLE_FATAL_COMPILE_ERROR = %Q(
505
+ In file included from /Users/musalj/code/OSS/SampleApp/Pods/SuperCoolPod/SuperAwesomeClass.m:12:
506
+ In file included from /Users/musalj/code/OSS/SampleApp/Pods/../LessCoolPod/LessCoolClass.h:9:
507
+ In file included from /Users/musalj/code/OSS/SampleApp/Pods/../LessCoolPod/EvenLessCoolClass.h:10:
508
+ /Users/musalj/code/OSS/SampleApp/Pods/Headers/LessCoolPod/SomeRandomClass.h:31:9: fatal error: 'SomeRandomHeader.h' file not found
509
+ #import "SomeRandomHeader.h"
510
+ ^
511
+ )
512
+
513
+ SAMPLE_FATAL_COMPILE_PCH_ERROR = %Q(
514
+ fatal error: file '/path/to/myproject/Pods/Pods-environment.h' has been modified since the precompiled header '/Users/hiroshi/Library/Developer/Xcode/DerivedData/MyProject-gfmuvpipjscewkdnqacgumhfarrd/Build/Intermediates/PrecompiledHeaders/MyProject-Prefix-dwjpvcnrlaydzmegejmcvrtcfkpf/MyProject-Prefix.pch.pch' was built
515
+ )
516
+
517
+ SAMPLE_FATAL_HEADER_ERROR = %Q(
518
+ fatal error: malformed or corrupted AST file: 'could not find file '/Users/mpv/dev/project/Crashlytics.framework/Headers/Crashlytics.h' referenced by AST file' note: after modifying system headers, please delete the module cache at '/Users/mpv/Library/Developer/Xcode/DerivedData/ModuleCache/M5WJ0FYE7N06'
519
+ )
520
+
521
+ SAMPLE_COMPILE_ERROR_WITH_TILDES = %Q(
522
+ /Users/musalj/code/OSS/ObjectiveSugar/Example/ObjectiveSugarTests/NSSetTests.m:93:16: error: no visible @interface for 'NSArray' declares the selector 'shoulds'
523
+ }] shoulds] equal:@[ @"F458 Italia", @"Testarossa" ]];
524
+ ~~ ^~~~~~~
525
+ )
526
+
527
+ SAMPLE_UNDEFINED_SYMBOLS = %Q(
528
+ Undefined symbols for architecture x86_64:
529
+ "_OBJC_CLASS_$_CABasicAnimation", referenced from:
530
+ objc-class-ref in ATZRadialProgressControl.o
531
+ ld: symbol(s) not found for architecture x86_64
532
+ )
533
+
534
+ SAMPLE_DUPLICATE_SYMBOLS = %Q(
535
+ duplicate symbol _OBJC_IVAR_$ClassName._ivarName in:
536
+ /Users/username/Library/Developer/Xcode/DerivedData/App-arcyyktezaigixbocjwfhsjllojz/Build/Intermediates/App.build/Debug-iphonesimulator/App.build/Objects-normal/i386/ClassName.o
537
+ /Users/username/Library/Developer/Xcode/DerivedData/App-arcyyktezaigixbocjwfhsjllojz/Build/Products/Debug-iphonesimulator/libPods.a(DuplicateClassName.o)
538
+ ld: 1 duplicate symbol for architecture i386
539
+ clang: error: linker command failed with exit code 1 (use -v to see invocation)
540
+ )
541
+
542
+ SAMPLE_LD_SYMBOLS_ERROR = 'ld: symbol(s) not found for architecture x86_64'
543
+ SAMPLE_LD_LIBRARY_ERROR = 'ld: library not found for -lPods-Yammer'
544
+
545
+ SAMPLE_CLANG_ERROR = 'clang: error: linker command failed with exit code 1 (use -v to see invocation)'
546
+