xcpretty 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +18 -5
- data/features/simple_format.feature +41 -6
- data/features/steps/formatting_steps.rb +47 -6
- data/features/support/env.rb +7 -1
- data/features/test_format.feature +8 -7
- data/lib/xcpretty/printer.rb +4 -1
- data/lib/xcpretty/printers/simple.rb +12 -0
- data/lib/xcpretty/version.rb +1 -1
- data/spec/fixtures/constants.rb +2 -0
- metadata +1 -3
- data/spec/fixtures/sample_xctool_output +0 -740
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71ca72d3ec4efe9f10a90d97232768050b7379da
|
4
|
+
data.tar.gz: 5720dcf5c745180162afff6153aba880bb22c3c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65e394895dd320f39c7898142a6170df189527fa7f5f5ba10591952c97bd920746a235f3046ff276e0faf7f270a34e746971646902decf719202551189037f16
|
7
|
+
data.tar.gz: 3f3d953302ba0d9bb3852d36377c7b0918e2ec1a8e04176920975a41efbb0a44d9115173949f2d6024b363f62719b2eb182901ad4a15cb2abe42947b55c76500
|
data/README.md
CHANGED
@@ -15,27 +15,34 @@ It's even a bit faster than `xcodebuild` only, since it saves your terminal some
|
|
15
15
|
|
16
16
|
## Formats
|
17
17
|
|
18
|
-
-
|
18
|
+
- --color, -c (you can add it to any format)
|
19
|
+
- --simple, -s (default)
|
19
20
|
![xcpretty --simple](http://i.imgur.com/SMx0gUD.gif)
|
20
21
|
|
21
|
-
- test (RSpec style, shown above)
|
22
|
+
- --test, -t (RSpec style, shown above)
|
22
23
|
![xcpretty alpha](http://i.imgur.com/VeTQQub.gif)
|
23
24
|
|
24
25
|
- tun / tap (not yet implemented. possible solution for most CI servers)
|
25
26
|
|
26
|
-
##
|
27
|
+
## Have you just cloned xctool?
|
27
28
|
|
28
29
|
Unlike [xctool](https://github.com/facebook/xctool), `xcpretty` isn't a build tool.
|
29
30
|
It relies on `xcodebuild` to do the build process, and it formats the output.
|
30
31
|
|
32
|
+
By the time when [xctool](https://github.com/facebook/xctool) was made, `xcodebuild`
|
33
|
+
wasn't aware of the `test` command. That means, running tests in general via CLI was a pain.
|
34
|
+
At this point, `xcodebuild` has got improved a lot, and it's ready to be used directly.
|
35
|
+
|
31
36
|
## Why?
|
32
37
|
|
33
38
|
There are many usages of this tool. Let me give you some ideas:
|
34
|
-
|
35
39
|
- Xcode's test tools are close to useless. Failures in a sidebar, non-dettachable console,... You can use `xcpretty` to build your next Xcode test runner plugin
|
36
|
-
- Run tests each time you hit save. The output is minimal, so go and wire it up with Kicker or Guard and be a real hipster!
|
40
|
+
- Run tests each time you hit save. The output is minimal, so go and wire it up with [Kicker](https://github.com/alloy/kicker) or [Guard](https://github.com/guard/guard) and be a real hipster!
|
37
41
|
- Mine Bitcoins. You can't with this tool, but you'll be so productive that you can earn all the money and buy them!!!1!
|
38
42
|
|
43
|
+
## Roadmap
|
44
|
+
- Improve test reporting, group tests semantically
|
45
|
+
- Write original xcodebuild output with -o flag
|
39
46
|
|
40
47
|
## Benchmark
|
41
48
|
|
@@ -94,3 +101,9 @@ $ time xctool -project ReactiveCocoa.xcodeproj -scheme ReactiveCocoa test
|
|
94
101
|
|
95
102
|
10.80 real 6.72 user 0.76 sys
|
96
103
|
```
|
104
|
+
|
105
|
+
|
106
|
+
## Thanks
|
107
|
+
|
108
|
+
- [Delisa Mason](http://github.com/kattrali) - for being a part of this
|
109
|
+
- [Fred Potter](http://github.com/fpotter) for making xctool and inspiring us
|
@@ -2,20 +2,55 @@ Feature: Showing build output in simple format
|
|
2
2
|
|
3
3
|
Scenario: Showing file compilation
|
4
4
|
Given I have a file to compile
|
5
|
-
When I
|
5
|
+
When I pipe to xcpretty with "--simple"
|
6
6
|
Then I should see a successful compilation message
|
7
7
|
|
8
8
|
Scenario: Showing precompilation
|
9
9
|
Given I have a precompiled header
|
10
|
-
When I
|
10
|
+
When I pipe to xcpretty with "--simple"
|
11
11
|
Then I should see a successful precompilation message
|
12
12
|
|
13
|
-
Scenario: Showing file compilation with
|
13
|
+
Scenario: Showing file compilation with color
|
14
14
|
Given I have a file to compile
|
15
|
-
When I
|
15
|
+
When I pipe to xcpretty with "--simple --color"
|
16
16
|
Then I should see a green success icon
|
17
17
|
|
18
18
|
Scenario: Showing precompilation
|
19
19
|
Given I have a precompiled header
|
20
|
-
When I
|
21
|
-
Then I should see a green success icon
|
20
|
+
When I pipe to xcpretty with "--simple --color"
|
21
|
+
Then I should see a green success icon
|
22
|
+
|
23
|
+
Scenario: Showing the start of a test suite
|
24
|
+
Given I start a test suite
|
25
|
+
When I pipe to xcpretty with "--simple"
|
26
|
+
Then I should see that the test suite started
|
27
|
+
|
28
|
+
Scenario: Showing the end of a test suite
|
29
|
+
Given I finish a test suite
|
30
|
+
When I pipe to xcpretty with "--simple"
|
31
|
+
Then I should see that the test suite finished
|
32
|
+
|
33
|
+
Scenario: Showing failed test output
|
34
|
+
Given I have a failing test in my suite
|
35
|
+
When I pipe to xcpretty with "--simple"
|
36
|
+
Then I should see the name of a failed test
|
37
|
+
And I should see the path of a failed test
|
38
|
+
|
39
|
+
Scenario: Showing successful test output
|
40
|
+
Given I have a passing test in my suite
|
41
|
+
When I pipe to xcpretty with "--simple"
|
42
|
+
Then I should see the name of a passing test
|
43
|
+
And I should not see the path of a passing test
|
44
|
+
|
45
|
+
Scenario: Showing failed test output with color
|
46
|
+
Given I have a failing test in my suite
|
47
|
+
And I finish a test suite
|
48
|
+
When I pipe to xcpretty with "--simple --color"
|
49
|
+
Then I should see a red failed test mark
|
50
|
+
And the final execution message should be red
|
51
|
+
|
52
|
+
Scenario: Showing successful test output with color
|
53
|
+
Given I have a passing test in my suite
|
54
|
+
And I finish a test suite
|
55
|
+
When I pipe to xcpretty with "--simple --color"
|
56
|
+
Then I should see a green passing test mark
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# encoding: utf-8
|
1
2
|
Given(/^I have a file to compile$/) do
|
2
3
|
add_run_input SAMPLE_COMPILE
|
3
4
|
end
|
@@ -18,7 +19,15 @@ Given(/^I have a passing test in my suite$/) do
|
|
18
19
|
add_run_input SAMPLE_OCUNIT_TEST
|
19
20
|
end
|
20
21
|
|
21
|
-
|
22
|
+
Given(/^I start a test suite$/) do
|
23
|
+
add_run_input SAMPLE_OCUNIT_SUITE_BEGINNING
|
24
|
+
end
|
25
|
+
|
26
|
+
Given(/^I finish a test suite$/) do
|
27
|
+
add_run_input SAMPLE_OCUNIT_SUITE_COMPLETION
|
28
|
+
end
|
29
|
+
|
30
|
+
When(/^I pipe to xcpretty with "(.*?)"$/) do |flags|
|
22
31
|
run_xcpretty(flags)
|
23
32
|
end
|
24
33
|
|
@@ -35,11 +44,11 @@ Then(/^I should see a green success icon$/) do
|
|
35
44
|
end
|
36
45
|
|
37
46
|
Then(/^I should see a failed test icon$/) do
|
38
|
-
run_output.should
|
47
|
+
run_output.should start_with("F")
|
39
48
|
end
|
40
49
|
|
41
|
-
Then(/^I should see a passing test icon$/) do
|
42
|
-
run_output.should
|
50
|
+
Then(/^I should see a passing test icon in ASCII$/) do
|
51
|
+
run_output.should start_with(".")
|
43
52
|
end
|
44
53
|
|
45
54
|
Then(/^I should see a red failed test icon$/) do
|
@@ -50,9 +59,41 @@ Then(/^the final execution message should be (red|green)$/) do |color|
|
|
50
59
|
last_line = run_output.lines.last
|
51
60
|
start_color = color == "red" ? RED_START : GREEN_START
|
52
61
|
last_line.should start_with(start_color)
|
53
|
-
last_line.should end_with(COLOR_END)
|
62
|
+
last_line.strip.should end_with(COLOR_END)
|
54
63
|
end
|
55
64
|
|
56
65
|
Then(/^I should see a green passing test icon$/) do
|
57
66
|
run_output.should include("#{GREEN_START}.#{COLOR_END}")
|
58
|
-
end
|
67
|
+
end
|
68
|
+
|
69
|
+
Then(/^I should see the name of a failed test$/) do
|
70
|
+
run_output.should =~ FAILING_TEST_NAME_MATCHER
|
71
|
+
end
|
72
|
+
|
73
|
+
Then(/^I should see the path of a failed test$/) do
|
74
|
+
run_output.should =~ TEST_PATH_MATCHER
|
75
|
+
end
|
76
|
+
|
77
|
+
Then(/^I should see the name of a passing test$/) do
|
78
|
+
run_output.should =~ PASSING_TEST_NAME_MATCHER
|
79
|
+
end
|
80
|
+
|
81
|
+
Then(/^I should not see the path of a passing test$/) do
|
82
|
+
run_output.should_not =~ TEST_PATH_MATCHER
|
83
|
+
end
|
84
|
+
|
85
|
+
Then(/^I should see that the test suite started$/) do
|
86
|
+
run_output.should =~ TEST_SUITE_BEGINNING_MATCHER
|
87
|
+
end
|
88
|
+
|
89
|
+
Then(/^I should see that the test suite finished$/) do
|
90
|
+
run_output.strip.should =~ TEST_SUITE_COMPLETION_MATCHER
|
91
|
+
end
|
92
|
+
|
93
|
+
Then(/^I should see a red failed test mark$/) do
|
94
|
+
run_output.should include("#{RED_START}✗#{COLOR_END}")
|
95
|
+
end
|
96
|
+
|
97
|
+
Then(/^I should see a green passing test mark$/) do
|
98
|
+
run_output.should include("#{GREEN_START}✓#{COLOR_END}")
|
99
|
+
end
|
data/features/support/env.rb
CHANGED
@@ -3,14 +3,20 @@ $:.unshift File.expand_path('../../..', __FILE__)
|
|
3
3
|
require "tempfile"
|
4
4
|
require "spec/fixtures/constants.rb"
|
5
5
|
|
6
|
+
TEST_SUITE_COMPLETION_MATCHER = /Executed \d+ tests, with \d+ failures \(\d+ unexpected\) in \d+\.\d+ \(\d+\.\d+\) seconds/
|
7
|
+
TEST_SUITE_BEGINNING_MATCHER = /Test Suite '.+' started/
|
8
|
+
TEST_PATH_MATCHER = %r{[\w/\-\s]+:\d+}
|
9
|
+
PASSING_TEST_NAME_MATCHER = %r{\w+\s\w+\s\(\d+\.\d+\sseconds\)}
|
10
|
+
FAILING_TEST_NAME_MATCHER = %r{\w+\s\w+, expected:}
|
11
|
+
|
6
12
|
INPUT_FILE = "xcpretty_input"
|
7
13
|
RED_START = "\e[31m"
|
8
14
|
COLOR_END = "\e[0m"
|
9
15
|
GREEN_START = "\e[32;1m"
|
10
16
|
|
11
17
|
def run_xcpretty flags
|
18
|
+
add_run_input SAMPLE_OCUNIT_SUITE_COMPLETION
|
12
19
|
add_run_input SAMPLE_EXECUTED_TESTS
|
13
|
-
add_run_input SAMPLE_KIWI_SUITE_COMPLETION
|
14
20
|
input_file = Tempfile.new(INPUT_FILE)
|
15
21
|
File.write(input_file.path, run_input)
|
16
22
|
@output = %x(cat '#{input_file.path}' | bin/xcpretty #{flags})
|
@@ -2,26 +2,27 @@ Feature: Showing RSpec-style test output
|
|
2
2
|
|
3
3
|
Scenario: Showing failed tests
|
4
4
|
Given I have a failing test in my suite
|
5
|
-
When I
|
5
|
+
When I pipe to xcpretty with "--test"
|
6
6
|
Then I should see a failed test icon
|
7
7
|
|
8
8
|
Scenario: Showing passing tests
|
9
9
|
Given I have a passing test in my suite
|
10
|
-
When I
|
11
|
-
Then I should see a passing test icon
|
10
|
+
When I pipe to xcpretty with "--test"
|
11
|
+
Then I should see a passing test icon in ASCII
|
12
12
|
|
13
|
-
Scenario: Showing some tests failed with
|
13
|
+
Scenario: Showing some tests failed with color
|
14
14
|
Given I have a failing test in my suite
|
15
|
-
When I
|
15
|
+
When I pipe to xcpretty with "--test --color"
|
16
16
|
Then I should see a red failed test icon
|
17
|
+
And I should see the path of a failed test
|
17
18
|
And the final execution message should be red
|
18
19
|
|
19
20
|
Scenario: Showing passing tests with colorization
|
20
21
|
Given I have a passing test in my suite
|
21
|
-
When I
|
22
|
+
When I pipe to xcpretty with "--test --color"
|
22
23
|
Then I should see a green passing test icon
|
23
24
|
|
24
25
|
Scenario: Showing that all tests passed with color
|
25
26
|
Given all of my tests will pass in my suite
|
26
|
-
When I
|
27
|
+
When I pipe to xcpretty with "--test --color"
|
27
28
|
Then the final execution message should be green
|
data/lib/xcpretty/printer.rb
CHANGED
@@ -17,7 +17,10 @@ module XCPretty
|
|
17
17
|
# $2 = time
|
18
18
|
PASSING_TEST_MATCHER = /Test Case\s'-\[(.*)\]'\spassed\s\((\d*\.\d{3})\sseconds\)/
|
19
19
|
|
20
|
-
TESTS_DONE_MATCHER = /Test Suite ('.*\.(
|
20
|
+
TESTS_DONE_MATCHER = /Test Suite ('.*\.(o|x)ctest(.*)') finished at/
|
21
|
+
# @regex Captured groups
|
22
|
+
# $1 test suite name
|
23
|
+
TESTS_START_MATCHER = /Test Suite ('.*(\.(o|x)ctest(.*))?') started at/
|
21
24
|
EXECUTED_MATCHER = /^Executed/
|
22
25
|
|
23
26
|
Paint::SHORTCUTS[:printer] = {
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# encoding: utf-8
|
1
2
|
require 'shellwords'
|
2
3
|
|
3
4
|
module XCPretty
|
@@ -42,6 +43,8 @@ module XCPretty
|
|
42
43
|
print_passing_test($1, $2)
|
43
44
|
when FAILING_TEST_MATCHER
|
44
45
|
print_failing_test($2, $3)
|
46
|
+
when TESTS_START_MATCHER
|
47
|
+
print_suite_start($1)
|
45
48
|
else
|
46
49
|
""
|
47
50
|
end
|
@@ -105,6 +108,15 @@ module XCPretty
|
|
105
108
|
format("Generating DSYM file")
|
106
109
|
end
|
107
110
|
|
111
|
+
def print_suite_start(name)
|
112
|
+
heading("Test Suite", name, "started")
|
113
|
+
end
|
114
|
+
|
115
|
+
def heading(prefix, text, description)
|
116
|
+
heading_text = colorize? ? white(text) : text
|
117
|
+
[prefix, heading_text, description].join(" ").strip
|
118
|
+
end
|
119
|
+
|
108
120
|
def format(command, argument_text="", success=true)
|
109
121
|
command_text = colorize? ? white(command) : command
|
110
122
|
[status_symbol(success), command_text, argument_text].join(" ").strip
|
data/lib/xcpretty/version.rb
CHANGED
data/spec/fixtures/constants.rb
CHANGED
@@ -1,5 +1,7 @@
|
|
1
|
+
# encoding: utf-8
|
1
2
|
KIWI = 'kiwi'
|
2
3
|
OCUNIT = 'ocunit'
|
4
|
+
SAMPLE_OCUNIT_SUITE_BEGINNING = "Test Suite '/path/to/a/suite.xctest(Tests)' started at 2013-12-09 05:05:58 +0000."
|
3
5
|
SAMPLE_KIWI_SUITE_COMPLETION = "Test Suite 'All tests' finished at 2013-12-08 04:26:49 +0000."
|
4
6
|
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."
|
5
7
|
SAMPLE_XCTEST_SUITE_COMPLETION = "Test Suite 'ObjectiveSugarTests.xctest' finished at 2013-12-09 04:42:13 +0000."
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xcpretty
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marin Usalj
|
@@ -110,7 +110,6 @@ files:
|
|
110
110
|
- lib/xcpretty/printers/simple.rb
|
111
111
|
- lib/xcpretty/version.rb
|
112
112
|
- spec/fixtures/constants.rb
|
113
|
-
- spec/fixtures/sample_xctool_output
|
114
113
|
- spec/xcpretty/printers/printer_spec.rb
|
115
114
|
- spec/xcpretty/printers/rspec_spec.rb
|
116
115
|
- spec/xcpretty/printers/simple_spec.rb
|
@@ -145,7 +144,6 @@ test_files:
|
|
145
144
|
- features/support/env.rb
|
146
145
|
- features/test_format.feature
|
147
146
|
- spec/fixtures/constants.rb
|
148
|
-
- spec/fixtures/sample_xctool_output
|
149
147
|
- spec/xcpretty/printers/printer_spec.rb
|
150
148
|
- spec/xcpretty/printers/rspec_spec.rb
|
151
149
|
- spec/xcpretty/printers/simple_spec.rb
|
@@ -1,740 +0,0 @@
|
|
1
|
-
[Info] Loading settings for scheme 'YammerNow' ... (894 ms)
|
2
|
-
|
3
|
-
=== BUILD ===
|
4
|
-
|
5
|
-
xcodebuild build YammerNow
|
6
|
-
Pods / Pods-ABContactHelper (Debug)
|
7
|
-
✓ Check dependencies (32 ms)
|
8
|
-
|
9
|
-
Pods / Pods-AFNetworking (Debug)
|
10
|
-
✓ Check dependencies (0 ms)
|
11
|
-
|
12
|
-
Pods / Pods-CocoaLumberjack (Debug)
|
13
|
-
✓ Check dependencies (0 ms)
|
14
|
-
|
15
|
-
Pods / Pods-CrittercismSDK (Debug)
|
16
|
-
✓ Check dependencies (0 ms)
|
17
|
-
|
18
|
-
Pods / Pods-DTFoundation (Debug)
|
19
|
-
✓ Check dependencies (0 ms)
|
20
|
-
✓ Compile NSURL+DTComparing.m (47 ms)
|
21
|
-
✓ Compile NSURL+DTAppLinks.m (48 ms)
|
22
|
-
✓ Compile NSURL+DTUnshorten.m (52 ms)
|
23
|
-
✓ Compile Pods-DTFoundation-dummy.m (41 ms)
|
24
|
-
✓ Compile UIImage+DTFoundation.m (69 ms)
|
25
|
-
✓ Compile UIApplication+DTNetworkActivity.m (78 ms)
|
26
|
-
✓ Compile UIView+DTFoundation.m (76 ms)
|
27
|
-
✓ Compile UIWebView+DTFoundation.m (65 ms)
|
28
|
-
✓ Libtool libPods-DTFoundation.a normal i386 (11 ms)
|
29
|
-
|
30
|
-
Pods / Pods-DTCoreText (Debug)
|
31
|
-
✓ Check dependencies (2 ms)
|
32
|
-
✓ Precompile Pods-DTCoreText-prefix.pch (44 ms)
|
33
|
-
✓ Precompile Pods-DTCoreText-prefix.pch (29 ms)
|
34
|
-
✓ Precompile Pods-DTCoreText-prefix.pch (44 ms)
|
35
|
-
✓ Compile DTAccessibilityElement.m (90 ms)
|
36
|
-
✓ Compile DTAccessibilityViewProxy.m (90 ms)
|
37
|
-
✓ Compile DTAttributedLabel.m (99 ms)
|
38
|
-
✓ Compile DTAnchorHTMLElement.m (89 ms)
|
39
|
-
✓ Compile DTAttributedTextContentView.m (214 ms)
|
40
|
-
✓ Compile DTAttributedTextCell.m (137 ms)
|
41
|
-
✓ Compile DTBreakHTMLElement.m (67 ms)
|
42
|
-
✓ Compile DTAttributedTextView.m (143 ms)
|
43
|
-
✓ Compile DTCSSListStyle.m (79 ms)
|
44
|
-
✓ Compile DTColor+Compatibility.m (50 ms)
|
45
|
-
✓ Compile DTCSSStylesheet.m (147 ms)
|
46
|
-
✓ Compile DTColorFunctions.m (95 ms)
|
47
|
-
✓ Compile DTCoreTextConstants.m (56 ms)
|
48
|
-
✓ Compile DTCoreTextFontDescriptor.m (161 ms)
|
49
|
-
✓ Compile DTCoreTextFontCollection.m (86 ms)
|
50
|
-
✓ Compile DTCoreTextFunctions.m (55 ms)
|
51
|
-
✓ Compile DTCoreTextGlyphRun.m (140 ms)
|
52
|
-
✓ Compile DTCoreTextLayoutFrame+Cursor.m (64 ms)
|
53
|
-
✓ Compile DTCoreTextLayoutFrame.m (258 ms)
|
54
|
-
✓ Compile DTCoreTextLayoutFrameAccessibilityElementGenerator.m (121 ms)
|
55
|
-
✓ Compile DTCoreTextLayoutLine.m (117 ms)
|
56
|
-
✓ Compile DTCoreTextParagraphStyle.m (103 ms)
|
57
|
-
✓ Compile DTCoreTextLayouter.m (71 ms)
|
58
|
-
✓ Compile DTDictationPlaceholderTextAttachment.m (59 ms)
|
59
|
-
✓ Compile DTDictationPlaceholderView.m (90 ms)
|
60
|
-
✓ Compile DTHTMLAttributedStringBuilder.m (171 ms)
|
61
|
-
✓ Compile DTHTMLElement.m (225 ms)
|
62
|
-
✓ Compile DTHTMLParserNode.m (69 ms)
|
63
|
-
✓ Compile DTHTMLParserTextNode.m (56 ms)
|
64
|
-
✓ Compile DTHTMLWriter.m (168 ms)
|
65
|
-
✓ Compile DTHorizontalRuleHTMLElement.m (65 ms)
|
66
|
-
✓ Compile DTIframeTextAttachment.m (84 ms)
|
67
|
-
✓ Compile DTImage+HTML.m (50 ms)
|
68
|
-
✓ Compile DTImageTextAttachment.m (114 ms)
|
69
|
-
✓ Compile DTLazyImageView.m (131 ms)
|
70
|
-
✓ Compile DTLinkButton.m (119 ms)
|
71
|
-
✓ Compile DTListItemHTMLElement.m (113 ms)
|
72
|
-
✓ Compile DTObjectTextAttachment.m (85 ms)
|
73
|
-
✓ Compile DTStylesheetHTMLElement.m (62 ms)
|
74
|
-
✓ Compile DTTextAttachment.m (99 ms)
|
75
|
-
✓ Compile DTTextAttachmentHTMLElement.m (68 ms)
|
76
|
-
✓ Compile DTTextHTMLElement.m (76 ms)
|
77
|
-
✓ Compile DTTextBlock.m (74 ms)
|
78
|
-
✓ Compile DTVideoTextAttachment.m (83 ms)
|
79
|
-
✓ Compile DTWebVideoView.m (117 ms)
|
80
|
-
✓ Compile NSAttributedString+DTCoreText.m (129 ms)
|
81
|
-
✓ Compile NSAttributedString+DTDebug.m (50 ms)
|
82
|
-
✓ Compile NSAttributedString+HTML.m (81 ms)
|
83
|
-
✓ Compile NSAttributedString+SmallCaps.m (76 ms)
|
84
|
-
✓ Compile NSAttributedStringRunDelegates.m (42 ms)
|
85
|
-
✓ Compile NSCharacterSet+HTML.m (62 ms)
|
86
|
-
✓ Compile NSDictionary+DTCoreText.m (66 ms)
|
87
|
-
✓ Compile NSMutableAttributedString+HTML.m (106 ms)
|
88
|
-
✓ Compile NSMutableString+HTML.m (43 ms)
|
89
|
-
✓ Compile NSScanner+HTML.m (84 ms)
|
90
|
-
✓ Compile NSString+CSS.m (84 ms)
|
91
|
-
✓ Compile NSString+HTML.m (103 ms)
|
92
|
-
✓ Compile NSString+Paragraphs.m (47 ms)
|
93
|
-
✓ Compile Pods-DTCoreText-dummy.m (38 ms)
|
94
|
-
✓ Compile UIFont+DTCoreText.m (43 ms)
|
95
|
-
✓ Compile default.css.c (31 ms)
|
96
|
-
✓ Libtool libPods-DTCoreText.a normal i386 (24 ms)
|
97
|
-
|
98
|
-
Pods / Pods-HPGrowingTextView (Debug)
|
99
|
-
✓ Check dependencies (2 ms)
|
100
|
-
✓ Precompile Pods-HPGrowingTextView-prefix.pch (28 ms)
|
101
|
-
✓ Precompile Pods-HPGrowingTextView-prefix.pch (28 ms)
|
102
|
-
✓ Compile HPGrowingTextView.m (85 ms)
|
103
|
-
✓ Compile HPTextViewInternal.m (55 ms)
|
104
|
-
✓ Compile Pods-HPGrowingTextView-dummy.m (26 ms)
|
105
|
-
✓ Libtool libPods-HPGrowingTextView.a normal i386 (6 ms)
|
106
|
-
|
107
|
-
Pods / Pods-MAKVONotificationCenter (Debug)
|
108
|
-
✓ Check dependencies (1 ms)
|
109
|
-
✓ Precompile Pods-MAKVONotificationCenter-prefix.pch (29 ms)
|
110
|
-
✓ Precompile Pods-MAKVONotificationCenter-prefix.pch (29 ms)
|
111
|
-
✓ Compile MAKVONotificationCenter.m (60 ms)
|
112
|
-
✓ Compile Pods-MAKVONotificationCenter-dummy.m (26 ms)
|
113
|
-
✓ Libtool libPods-MAKVONotificationCenter.a normal i386 (13 ms)
|
114
|
-
|
115
|
-
Pods / Pods-MBSwitch (Debug)
|
116
|
-
✓ Check dependencies (1 ms)
|
117
|
-
✓ Precompile Pods-MBSwitch-prefix.pch (28 ms)
|
118
|
-
✓ Compile MBSwitch.m (71 ms)
|
119
|
-
✓ Compile Pods-MBSwitch-dummy.m (24 ms)
|
120
|
-
✓ Libtool libPods-MBSwitch.a normal i386 (6 ms)
|
121
|
-
|
122
|
-
Pods / Pods-Reachability (Debug)
|
123
|
-
✓ Check dependencies (1 ms)
|
124
|
-
✓ Precompile Pods-Reachability-prefix.pch (28 ms)
|
125
|
-
✓ Precompile Pods-Reachability-prefix.pch (28 ms)
|
126
|
-
✓ Compile Pods-Reachability-dummy.m (25 ms)
|
127
|
-
✓ Compile Reachability.m (49 ms)
|
128
|
-
✓ Libtool libPods-Reachability.a normal i386 (15 ms)
|
129
|
-
|
130
|
-
Pods / Pods-SBJson (Debug)
|
131
|
-
✓ Check dependencies (2 ms)
|
132
|
-
✓ Precompile Pods-SBJson-prefix.pch (29 ms)
|
133
|
-
✓ Precompile Pods-SBJson-prefix.pch (28 ms)
|
134
|
-
✓ Compile NSObject+SBJson.m (44 ms)
|
135
|
-
✓ Compile Pods-SBJson-dummy.m (42 ms)
|
136
|
-
✓ Compile SBJsonParser.m (59 ms)
|
137
|
-
✓ Compile SBJsonStreamParserAccumulator.m (47 ms)
|
138
|
-
✓ Compile SBJsonStreamParser.m (63 ms)
|
139
|
-
✓ Compile SBJsonStreamParserAdapter.m (61 ms)
|
140
|
-
✓ Compile SBJsonStreamParserState.m (83 ms)
|
141
|
-
✓ Compile SBJsonStreamWriter.m (78 ms)
|
142
|
-
✓ Compile SBJsonStreamWriterAccumulator.m (51 ms)
|
143
|
-
✓ Compile SBJsonTokeniser.m (66 ms)
|
144
|
-
✓ Compile SBJsonStreamWriterState.m (58 ms)
|
145
|
-
✓ Compile SBJsonUTF8Stream.m (48 ms)
|
146
|
-
✓ Compile SBJsonWriter.m (51 ms)
|
147
|
-
✓ Libtool libPods-SBJson.a normal i386 (9 ms)
|
148
|
-
|
149
|
-
Pods / Pods-SSKeychain (Debug)
|
150
|
-
✓ Check dependencies (1 ms)
|
151
|
-
✓ Precompile Pods-SSKeychain-prefix.pch (29 ms)
|
152
|
-
✓ Precompile Pods-SSKeychain-prefix.pch (28 ms)
|
153
|
-
✓ Compile Pods-SSKeychain-dummy.m (26 ms)
|
154
|
-
✓ Compile SSKeychain.m (36 ms)
|
155
|
-
✓ Compile SSKeychainQuery.m (43 ms)
|
156
|
-
✓ Libtool libPods-SSKeychain.a normal i386 (6 ms)
|
157
|
-
|
158
|
-
Pods / Pods-TITokenField (Debug)
|
159
|
-
✓ Check dependencies (2 ms)
|
160
|
-
✓ Precompile Pods-TITokenField-prefix.pch (28 ms)
|
161
|
-
✓ Precompile Pods-TITokenField-prefix.pch (28 ms)
|
162
|
-
✓ Compile Names.m (28 ms)
|
163
|
-
✓ Compile Pods-TITokenField-dummy.m (25 ms)
|
164
|
-
✓ Compile TITokenField.m (146 ms)
|
165
|
-
✓ Libtool libPods-TITokenField.a normal i386 (8 ms)
|
166
|
-
|
167
|
-
Pods / Pods-YamDrawReport (Debug)
|
168
|
-
✓ Check dependencies (2 ms)
|
169
|
-
✓ Precompile Pods-YamDrawReport-prefix.pch (29 ms)
|
170
|
-
✓ Precompile Pods-YamDrawReport-prefix.pch (29 ms)
|
171
|
-
✓ Compile DRPDrawView.m (86 ms)
|
172
|
-
✓ Compile DRPNoteView.m (78 ms)
|
173
|
-
✓ Compile DRPReporter.m (83 ms)
|
174
|
-
✓ Compile DRPReporterViewController.m (95 ms)
|
175
|
-
✓ Compile Pods-YamDrawReport-dummy.m (42 ms)
|
176
|
-
✓ Compile UIWindow+DRPShakeListener.m (63 ms)
|
177
|
-
✓ Compile YSFeedbackManager.m (120 ms)
|
178
|
-
✓ Libtool libPods-YamDrawReport.a normal i386 (9 ms)
|
179
|
-
|
180
|
-
Pods / Pods-cometclient (Debug)
|
181
|
-
✓ Check dependencies (1 ms)
|
182
|
-
✓ Precompile Pods-cometclient-prefix.pch (28 ms)
|
183
|
-
✓ Precompile Pods-cometclient-prefix.pch (27 ms)
|
184
|
-
✓ Compile DDArrayQueue.m (56 ms)
|
185
|
-
⚠ Compile DDCometAFNetworkingLongPollingTransport.m (86 ms)
|
186
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
187
|
-
In file included from /Users/musalj/code/yammer/ios-chat/Pods/cometclient/DDComet/DDCometAFNetworkingLongPollingTransport.m:7:
|
188
|
-
In file included from /Users/musalj/code/yammer/ios-chat/Pods/BuildHeaders/AFNetworking/AFNetworking.h:35:
|
189
|
-
/Users/musalj/code/yammer/ios-chat/Pods/BuildHeaders/AFNetworking/AFHTTPClient.h:84:9: warning: SystemConfiguration framework not found in project, or not included in precompiled header. Network reachability functionality will not be available. [-W#pragma-messages]
|
190
|
-
#pragma message("SystemConfiguration framework not found in project, or not included in precompiled header. Network reachability functionality will not be available.")
|
191
|
-
^
|
192
|
-
/Users/musalj/code/yammer/ios-chat/Pods/BuildHeaders/AFNetworking/AFHTTPClient.h:89:9: warning: MobileCoreServices framework not found in project, or not included in precompiled header. Automatic MIME type detection when uploading files in multipart requests will not be available. [-W#pragma-messages]
|
193
|
-
#pragma message("MobileCoreServices framework not found in project, or not included in precompiled header. Automatic MIME type detection when uploading files in multipart requests will not be available.")
|
194
|
-
^
|
195
|
-
2 warnings generated.
|
196
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
197
|
-
✓ Compile DDCometClient.m (81 ms)
|
198
|
-
✓ Compile DDCometMessage.m (70 ms)
|
199
|
-
✓ Compile DDCometLongPollingTransport.m (69 ms)
|
200
|
-
✓ Compile DDCometSubscription.m (54 ms)
|
201
|
-
✓ Compile DDConcurrentQueue.m (54 ms)
|
202
|
-
✓ Compile DDQueueProcessor.m (53 ms)
|
203
|
-
✓ Compile Pods-cometclient-dummy.m (26 ms)
|
204
|
-
✓ Libtool libPods-cometclient.a normal i386 (6 ms)
|
205
|
-
|
206
|
-
Pods / Pods-YamKit (Debug)
|
207
|
-
✓ Check dependencies (1 ms)
|
208
|
-
✓ Precompile Pods-YamKit-prefix.pch (34 ms)
|
209
|
-
✓ Precompile Pods-YamKit-prefix.pch (30 ms)
|
210
|
-
✓ Compile AFMasterViewController.m (124 ms)
|
211
|
-
✓ Compile EKParticipant+Additions.m (52 ms)
|
212
|
-
✓ Compile FollowedReference.m (99 ms)
|
213
|
-
✓ Compile MyFeedMeta.m (121 ms)
|
214
|
-
✓ Compile MyFeedMetaRealtime.m (89 ms)
|
215
|
-
✓ Compile MyFeedMetaUnseenMessageCountByThread.m (51 ms)
|
216
|
-
✓ Compile NSAttributedString+YamUI.m (43 ms)
|
217
|
-
✓ Compile NSData+Additions.m (62 ms)
|
218
|
-
✓ Compile NSDate+Additions.m (64 ms)
|
219
|
-
✓ Compile NSDate+TimeAgo.m (61 ms)
|
220
|
-
✓ Compile NSDictionary+Additions.m (44 ms)
|
221
|
-
✓ Compile NSDictionary+YSAdditions.m (49 ms)
|
222
|
-
✓ Compile NSFetchedResultsController+YDShorthand.m (56 ms)
|
223
|
-
✓ Compile NSManagedObject+YDCacheInvalidation.m (96 ms)
|
224
|
-
✓ Compile NSManagedObject+YDShorthand.m (105 ms)
|
225
|
-
✓ Compile NSManagedObjectContext+YDShorthand.m (147 ms)
|
226
|
-
✓ Compile NSMutableArray+QueueAdditions.m (49 ms)
|
227
|
-
✓ Compile NSMutableAttributedString+YMAttributedString.m (83 ms)
|
228
|
-
✓ Compile NSOperationQueue+WBNoticeExtensions.m (108 ms)
|
229
|
-
✓ Compile NSPredicate+YDPredicateCreator.m (58 ms)
|
230
|
-
✓ Compile NSString+YSAdditions.m (76 ms)
|
231
|
-
✓ Compile NSURL+YSAdditions.m (78 ms)
|
232
|
-
✓ Compile NSUserDefaults+Additions.m (53 ms)
|
233
|
-
✓ Compile Pods-YamKit-dummy.m (43 ms)
|
234
|
-
✓ Compile SVProgressHUD.m (197 ms)
|
235
|
-
✓ Compile UIActionSheet+Blocks.m (153 ms)
|
236
|
-
✓ Compile UIAlertView+Blocks.m (94 ms)
|
237
|
-
✓ Compile UIColor+YamColor.m (92 ms)
|
238
|
-
✓ Compile UIDevice+Additions.m (46 ms)
|
239
|
-
✓ Compile UIFont+YamUI.m (48 ms)
|
240
|
-
✓ Compile UIImage+Additions.m (84 ms)
|
241
|
-
✓ Compile UIImage+ImageEffects.m (83 ms)
|
242
|
-
✓ Compile UIImage+YMImage.m (69 ms)
|
243
|
-
✓ Compile UILabel+WBExtensions.m (98 ms)
|
244
|
-
✓ Compile UITableView+YMAdditions.m (83 ms)
|
245
|
-
✓ Compile UIView+LayoutAdditions.m (82 ms)
|
246
|
-
✓ Compile UIView+SuperviewKindOfClass.m (81 ms)
|
247
|
-
✓ Compile UIViewController+additions.m (105 ms)
|
248
|
-
✓ Compile WBBlueGradientView.m (86 ms)
|
249
|
-
✓ Compile WBErrorNoticeView.m (111 ms)
|
250
|
-
✓ Compile WBGrayGradientView.m (98 ms)
|
251
|
-
✓ Compile WBNoticeOperation.m (98 ms)
|
252
|
-
✓ Compile WBRedGradientView.m (85 ms)
|
253
|
-
✓ Compile WBNoticeView.m (179 ms)
|
254
|
-
✓ Compile WBStickyNoticeView.m (96 ms)
|
255
|
-
✓ Compile WBSuccessNoticeView.m (100 ms)
|
256
|
-
✓ Compile YDAttachment.m (113 ms)
|
257
|
-
✓ Compile YDAttachmentDataService.m (88 ms)
|
258
|
-
✓ Compile YDDataDeserializer.m (90 ms)
|
259
|
-
✓ Compile YDDataMap.m (65 ms)
|
260
|
-
✓ Compile YDDataStore+Threads.m (91 ms)
|
261
|
-
✓ Compile YDDataStore+YSNetworkingServiceMessages.m (72 ms)
|
262
|
-
✓ Compile YDDataStore.m (138 ms)
|
263
|
-
✓ Compile YDFeed.m (48 ms)
|
264
|
-
✓ Compile YDEmailAddress.m (48 ms)
|
265
|
-
✓ Compile YDFieldDefinition.m (50 ms)
|
266
|
-
✓ Compile YDGroup.m (76 ms)
|
267
|
-
✓ Compile YDGroupDataService.m (83 ms)
|
268
|
-
✓ Compile YDManagedObjectsObserver.m (118 ms)
|
269
|
-
✓ Compile YDManagedSingleObjectObserver.m (98 ms)
|
270
|
-
✓ Compile YDMessage.m (189 ms)
|
271
|
-
✓ Compile YDMessageDataService.m (93 ms)
|
272
|
-
✓ Compile YDNetwork.m (76 ms)
|
273
|
-
✓ Compile YDNetworkDataService.m (85 ms)
|
274
|
-
✓ Compile YDNetworkDomain.m (50 ms)
|
275
|
-
✓ Compile YDNotificationDataService.m (65 ms)
|
276
|
-
✓ Compile YDNotification.m (59 ms)
|
277
|
-
✓ Compile YDPage.m (54 ms)
|
278
|
-
✓ Compile YDPageDataService.m (62 ms)
|
279
|
-
✓ Compile YDPropertyAttributes.m (59 ms)
|
280
|
-
✓ Compile YDPropertyIntrospector.m (67 ms)
|
281
|
-
✓ Compile YDReferenceDataService.m (128 ms)
|
282
|
-
✓ Compile YDReferencedMessage.m (55 ms)
|
283
|
-
✓ Compile YDReferencesContainer.m (100 ms)
|
284
|
-
✓ Compile YDScrapedContact.m (127 ms)
|
285
|
-
✓ Compile YDScrapedContactDataService.m (103 ms)
|
286
|
-
✓ Compile YDSignUpUser.m (56 ms)
|
287
|
-
✓ Compile YDSuggestedContact.m (106 ms)
|
288
|
-
✓ Compile YDThread.m (178 ms)
|
289
|
-
✓ Compile YDThreadDataService.m (127 ms)
|
290
|
-
✓ Compile YDUploadedFile.m (56 ms)
|
291
|
-
✓ Compile YDUploadedFileDataService.m (68 ms)
|
292
|
-
✓ Compile YDUser.m (105 ms)
|
293
|
-
✓ Compile YDUserAccount.m (67 ms)
|
294
|
-
✓ Compile YDUserDataService.m (104 ms)
|
295
|
-
✓ Compile YKBadgeView.m (99 ms)
|
296
|
-
✓ Compile YKBarButtonItem.m (100 ms)
|
297
|
-
✓ Compile YKButton.m (142 ms)
|
298
|
-
✓ Compile YKContactCell.m (146 ms)
|
299
|
-
✓ Compile YKContactCollectionCell.m (121 ms)
|
300
|
-
✓ Compile YKContactsViewController.m (296 ms)
|
301
|
-
✓ Compile YKDefaultTheme.m (104 ms)
|
302
|
-
✓ Compile YKErrorLabel.m (92 ms)
|
303
|
-
✓ Compile YKFetchedTableController.m (97 ms)
|
304
|
-
✓ Compile YKGetStartedFasterViewController.m (168 ms)
|
305
|
-
✓ Compile YKHomeScreenView.m (100 ms)
|
306
|
-
✓ Compile YKInviteContactCell.m (103 ms)
|
307
|
-
✓ Compile YKInviteContactsViewController.m (170 ms)
|
308
|
-
✓ Compile YKInviteContactsView.m (99 ms)
|
309
|
-
✓ Compile YKLocalization.m (41 ms)
|
310
|
-
✓ Compile YKLoginView.m (120 ms)
|
311
|
-
✓ Compile YKLoginViewController.m (191 ms)
|
312
|
-
✓ Compile YKModifiedImageCache.m (47 ms)
|
313
|
-
✓ Compile YKNewHomeScreenViewController.m (148 ms)
|
314
|
-
✓ Compile YKPageViewController.m (109 ms)
|
315
|
-
✓ Compile YKSegmentedControl.m (85 ms)
|
316
|
-
✓ Compile YKSignUpCompleteViewController.m (144 ms)
|
317
|
-
✓ Compile YKSignUpFormViewController.m (37 ms)
|
318
|
-
✓ Compile YKSignupCompleteView.m (104 ms)
|
319
|
-
✓ Compile YKSignUpService.m (114 ms)
|
320
|
-
✓ Compile YKSignupView.m (141 ms)
|
321
|
-
✓ Compile YKSignupViewController.m (190 ms)
|
322
|
-
✓ Compile YKSimpleButton.m (93 ms)
|
323
|
-
✓ Compile YKSimpleTextField.m (123 ms)
|
324
|
-
✓ Compile YKStaticTableViewDataSource.m (120 ms)
|
325
|
-
✓ Compile YKTableViewCellData.m (66 ms)
|
326
|
-
✓ Compile YKTextField.m (99 ms)
|
327
|
-
✓ Compile YKTextViewResizer.m (97 ms)
|
328
|
-
✓ Compile YKThemeManager.m (67 ms)
|
329
|
-
✓ Compile YKUILabelUnderline.m (87 ms)
|
330
|
-
✓ Compile YMCommonErrorHandler.m (130 ms)
|
331
|
-
✓ Compile YMDateFormatter.m (66 ms)
|
332
|
-
✓ Compile YMDisplayMessage.m (90 ms)
|
333
|
-
✓ Compile YMDateFormatterInternal.m (74 ms)
|
334
|
-
✓ Compile YMDrawingAdditions.m (145 ms)
|
335
|
-
✓ Compile YMHTTPClient.m (77 ms)
|
336
|
-
✓ Compile YMHTTPRequestOperation.m (69 ms)
|
337
|
-
✓ Compile YMKeyboardLayoutHelperView.m (101 ms)
|
338
|
-
✓ Compile YMLoadingView.m (98 ms)
|
339
|
-
✓ Compile YMLoginFlowNavController.m (82 ms)
|
340
|
-
✓ Compile YMPopoverMenu.m (115 ms)
|
341
|
-
✓ Compile YMPopoverMenuItem.m (63 ms)
|
342
|
-
✓ Compile YMProfileHandler.m (148 ms)
|
343
|
-
✓ Compile YMReplyBarView.m (116 ms)
|
344
|
-
✓ Compile YMSeparatorView.m (85 ms)
|
345
|
-
✓ Compile YMTextView.m (114 ms)
|
346
|
-
✓ Compile YSAbstractParseOperation.m (122 ms)
|
347
|
-
✓ Compile YSAutoUpdater.m (138 ms)
|
348
|
-
✓ Compile YSBlockParseOperation.m (52 ms)
|
349
|
-
✓ Compile YSCacheManager.m (51 ms)
|
350
|
-
✓ Compile YSConsoleFormatter.m (79 ms)
|
351
|
-
✓ Compile YSContactScraper.m (173 ms)
|
352
|
-
✓ Compile YSCurrentUserParseOperation.m (123 ms)
|
353
|
-
✓ Compile YSFeedResponseParseOperation.m (187 ms)
|
354
|
-
✓ Compile YSFileLogger.m (71 ms)
|
355
|
-
✓ Compile YSFlusher.m (134 ms)
|
356
|
-
✓ Compile YSGroupsResponseParseOperation.m (118 ms)
|
357
|
-
✓ Compile YSHttpLongPollingClient.m (146 ms)
|
358
|
-
✓ Compile YSJSONFormatterForRemoteLogger.m (155 ms)
|
359
|
-
✓ Compile YSLaunchService.m (199 ms)
|
360
|
-
✓ Compile YSLogFormatter.m (83 ms)
|
361
|
-
✓ Compile YSMarkAsReadParseOperation.m (113 ms)
|
362
|
-
✓ Compile YSNetworkingService+ABManager.m (101 ms)
|
363
|
-
✓ Compile YSNetworkingService+Contacts.m (138 ms)
|
364
|
-
✓ Compile YSNetworkingService+Groups.m (164 ms)
|
365
|
-
✓ Compile YSNetworkingService+Messages.m (228 ms)
|
366
|
-
✓ Compile YSNetworkingService+Networks.m (156 ms)
|
367
|
-
✓ Compile YSNetworkingService+Notifications.m (150 ms)
|
368
|
-
✓ Compile YSNetworkingService+Presence.m (112 ms)
|
369
|
-
✓ Compile YSNetworkingService+SignUp.m (160 ms)
|
370
|
-
✓ Compile YSNetworkingService+Users.m (127 ms)
|
371
|
-
✓ Compile YSNetworkingService.m (226 ms)
|
372
|
-
✓ Compile YSPostMessageParseOperation.m (143 ms)
|
373
|
-
✓ Compile YSRealTimeFeedResponseParseOperation.m (123 ms)
|
374
|
-
✓ Compile YSRealtimeEventInfo.m (65 ms)
|
375
|
-
✓ Compile YSRealtimeLikeParseOperation.m (127 ms)
|
376
|
-
✓ Compile YSRealtimeMessageHandler.m (134 ms)
|
377
|
-
✓ Compile YSRemoteLogger.m (127 ms)
|
378
|
-
✓ Compile YSRealtimeService.m (119 ms)
|
379
|
-
✓ Compile YSRemoteNotification.m (56 ms)
|
380
|
-
✓ Compile YSSSOViewController.m (163 ms)
|
381
|
-
✓ Compile YSServiceKey.m (53 ms)
|
382
|
-
✓ Compile YSSignUpService.m (120 ms)
|
383
|
-
✓ Compile YSSingleGroupResponseParseOperation.m (105 ms)
|
384
|
-
✓ Compile YSThreadResponseParseOperation.m (118 ms)
|
385
|
-
✓ Compile YSTreatmentManager.m (134 ms)
|
386
|
-
✓ Compile YSUserAuthenticator+ActionSheet.m (133 ms)
|
387
|
-
✓ Compile YSTreatmentParseOperation.m (60 ms)
|
388
|
-
✓ Compile YSUserAuthenticator.m (153 ms)
|
389
|
-
✓ Compile YSViewQueue.m (83 ms)
|
390
|
-
✓ Compile YSUtils.m (61 ms)
|
391
|
-
✓ Compile Ymodule.m (96 ms)
|
392
|
-
✓ Compile _YDAttachment.m (129 ms)
|
393
|
-
✓ Compile _YDEmailAddress.m (63 ms)
|
394
|
-
✓ Compile _YDFeed.m (70 ms)
|
395
|
-
✓ Compile _YDGroup.m (105 ms)
|
396
|
-
✓ Compile _YDMessage.m (131 ms)
|
397
|
-
✓ Compile _YDNetwork.m (115 ms)
|
398
|
-
✓ Compile _YDNetworkDomain.m (65 ms)
|
399
|
-
✓ Compile _YDNotification.m (86 ms)
|
400
|
-
✓ Compile _YDPage.m (77 ms)
|
401
|
-
✓ Compile _YDReferencedMessage.m (71 ms)
|
402
|
-
✓ Compile _YDSuggestedContact.m (77 ms)
|
403
|
-
✓ Compile _YDScrapedContact.m (76 ms)
|
404
|
-
✓ Compile _YDThread.m (102 ms)
|
405
|
-
✓ Compile _YDUploadedFile.m (69 ms)
|
406
|
-
✓ Compile _YDUser.m (108 ms)
|
407
|
-
✓ Compile _YDUserAccount.m (60 ms)
|
408
|
-
✓ Libtool libPods-YamKit.a normal i386 (73 ms)
|
409
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
410
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: /Users/musalj/Library/Developer/Xcode/DerivedData/YammerNow-gxwwuvyzqubnbfaesalfplrycxpe/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-YamKit.build/Objects-normal/i386/YKSignUpFormViewController.o has no symbols
|
411
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
412
|
-
|
413
|
-
Pods / Pods (Debug)
|
414
|
-
✓ Check dependencies (2 ms)
|
415
|
-
✓ Compile Pods-dummy.m (19 ms)
|
416
|
-
✓ Libtool libPods.a normal i386 (488 ms)
|
417
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
418
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: /Users/musalj/Library/Developer/Xcode/DerivedData/YammerNow-gxwwuvyzqubnbfaesalfplrycxpe/Build/Products/Debug-iphonesimulator/libPods-YamKit.a(YKSignUpFormViewController.o) has no symbols
|
419
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
420
|
-
|
421
|
-
YammerNow / YammerNow (Debug)
|
422
|
-
✓ Check dependencies (4 ms)
|
423
|
-
✓ Create product structure (0 ms)
|
424
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
425
|
-
/bin/mkdir -p /Users/musalj/Library/Developer/Xcode/DerivedData/YammerNow-gxwwuvyzqubnbfaesalfplrycxpe/Build/Products/Debug-iphonesimulator/YammerNow.app
|
426
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
427
|
-
✓ Process YammerNow-Info.plist (1 ms)
|
428
|
-
✓ Run custom shell script 'Check Pods Manifest.lock' (11 ms)
|
429
|
-
✓ Precompile YammerNow-Prefix.pch (235 ms)
|
430
|
-
✓ Compile YMSoftwareAttributionViewController.m (107 ms)
|
431
|
-
✓ Compile main.m (49 ms)
|
432
|
-
✓ Compile YMAppDelegate.m (147 ms)
|
433
|
-
✓ Compile YMWebViewController.m (117 ms)
|
434
|
-
✓ Compile YMChatViewController.m (376 ms)
|
435
|
-
✓ Compile YMChatListCell.m (147 ms)
|
436
|
-
✓ Compile YMChatCell.m (212 ms)
|
437
|
-
✓ Compile YMMessageDetailInfoView.m (126 ms)
|
438
|
-
✓ Compile YMSystemMessageContentView.m (100 ms)
|
439
|
-
✓ Compile YMMessageDetailViewController.m (158 ms)
|
440
|
-
✓ Compile YMSettingsViewController.m (253 ms)
|
441
|
-
✓ Compile YMChatListViewController.m (244 ms)
|
442
|
-
✓ Compile YMMessageNotificationView.m (101 ms)
|
443
|
-
✓ Compile YMSettingDetailCell.m (114 ms)
|
444
|
-
✓ Compile YMSettingCell.m (110 ms)
|
445
|
-
✓ Compile YMStickerChatCell.m (151 ms)
|
446
|
-
✓ Compile YMAboutYammerViewController.m (185 ms)
|
447
|
-
✓ Compile YMMessageBubbleView.m (162 ms)
|
448
|
-
✓ Compile YMMessageNotificationView+YMPopulate.m (100 ms)
|
449
|
-
✓ Compile YMSettingContactCell.m (98 ms)
|
450
|
-
✓ Compile YMRealTimeNotificationManager.m (175 ms)
|
451
|
-
✓ Compile YMRealtimeXMessHandler.m (95 ms)
|
452
|
-
✓ Compile YMStickerViewDataSource.m (101 ms)
|
453
|
-
✓ Compile YMRealtimeLikeSubscriber.m (100 ms)
|
454
|
-
✓ Compile YMSettingDetailEditCell.m (143 ms)
|
455
|
-
✓ Compile YMChatInfoViewController.m (253 ms)
|
456
|
-
✓ Compile YMChatListLoadingView.m (94 ms)
|
457
|
-
✓ Compile YMMailManager.m (99 ms)
|
458
|
-
✓ Compile YMImagePreviewViewController.m (98 ms)
|
459
|
-
✓ Compile YMChatTheme.m (113 ms)
|
460
|
-
✓ Compile YMRoundedButton.m (92 ms)
|
461
|
-
✓ Compile YMChatListEmptyStateView.m (110 ms)
|
462
|
-
✓ Compile YMSettingContactEditCell.m (139 ms)
|
463
|
-
✓ Compile YMRealtimeNotificationPresenter.m (155 ms)
|
464
|
-
✓ Compile YMAttributedLabel.m (345 ms)
|
465
|
-
✓ Compile YMEmojiMapper.m (82 ms)
|
466
|
-
✓ Compile YMAttachmentChatCell.m (196 ms)
|
467
|
-
✓ Compile YMTypingIndicatorView.m (116 ms)
|
468
|
-
✓ Compile YMStickerCell.m (86 ms)
|
469
|
-
✓ Compile YMMessageDetailHeaderView.m (157 ms)
|
470
|
-
✓ Compile YMMessageDetailFooterView.m (113 ms)
|
471
|
-
✓ Compile YMTypingIndicator.m (94 ms)
|
472
|
-
✓ Compile YMPhotoSelector.m (118 ms)
|
473
|
-
✓ Compile YMChatBaseCell.m (103 ms)
|
474
|
-
✓ Compile YMCTACell.m (90 ms)
|
475
|
-
✓ Compile YMLineSeparatorView.m (90 ms)
|
476
|
-
✓ Compile YDMessage+Chat.m (135 ms)
|
477
|
-
✓ Compile YMProfileInfoViewController.m (170 ms)
|
478
|
-
✓ Compile YMAddressBookManager.m (97 ms)
|
479
|
-
✓ Compile YMRealtimeFacade.m (132 ms)
|
480
|
-
✓ Compile YMSystemMessageChatCell.m (106 ms)
|
481
|
-
✓ Compile YMPublisherView.m (135 ms)
|
482
|
-
✓ Compile YMUserHeaderView.m (110 ms)
|
483
|
-
✓ Compile YMLoadOlderChatCell.m (122 ms)
|
484
|
-
✓ Compile YMChatLifecycle.m (152 ms)
|
485
|
-
✓ Compile UIApplication+YMScreenshot.m (102 ms)
|
486
|
-
✓ Compile YMUserEditHeaderView.m (122 ms)
|
487
|
-
✓ Compile YMStickerViewController.m (89 ms)
|
488
|
-
✓ Compile YMAddMemberChatCell.m (87 ms)
|
489
|
-
✓ Link YammerNow (534 ms)
|
490
|
-
✓ Generate YammerNow.app.dSYM (377 ms)
|
491
|
-
✓ Copy graythumb@2x.png (0 ms)
|
492
|
-
✓ Copy InfoPlist.strings (2 ms)
|
493
|
-
✓ Copy Default.png (1 ms)
|
494
|
-
✓ Copy Default@2x.png (0 ms)
|
495
|
-
✓ Copy Default-568h@2x.png (0 ms)
|
496
|
-
✓ Copy cell_bg@2x.png (0 ms)
|
497
|
-
✓ Copy search-icon@2x.png (0 ms)
|
498
|
-
✓ Copy header_logo.png (0 ms)
|
499
|
-
✓ Copy header_logo@2x.png (0 ms)
|
500
|
-
✓ Copy tab_menu_btn.png (2 ms)
|
501
|
-
✓ Copy whitethumb.png (5 ms)
|
502
|
-
✓ Copy white_iphone.png (5 ms)
|
503
|
-
✓ Copy Hackday-Icon@2x.png (2 ms)
|
504
|
-
✓ Copy tab_menu_btn@2x.png (2 ms)
|
505
|
-
✓ Copy post_icon.png (1 ms)
|
506
|
-
✓ Copy post_icon@2x.png (1 ms)
|
507
|
-
✓ Copy Xylophone sound 1.mp3 (6 ms)
|
508
|
-
✓ Copy attachments@2x.png (1 ms)
|
509
|
-
✓ Copy post-topbar-icon.png (0 ms)
|
510
|
-
✓ Copy STICKERS (11 ms)
|
511
|
-
✓ Copy post-topbar-icon@2x.png (0 ms)
|
512
|
-
✓ Copy checkmark.png (0 ms)
|
513
|
-
✓ Copy checkmark@2x.png (0 ms)
|
514
|
-
✓ Copy Attribution.txt (0 ms)
|
515
|
-
✓ Copy mobileicon.png (0 ms)
|
516
|
-
✓ Copy web.png (3 ms)
|
517
|
-
✓ Copy mobileicon@2x.png (0 ms)
|
518
|
-
✓ Copy info.png (2 ms)
|
519
|
-
✓ Copy attachment_icon.png (2 ms)
|
520
|
-
✓ Copy graythumb.png (2 ms)
|
521
|
-
✓ Copy attachment_icon@2x.png (1 ms)
|
522
|
-
✓ Copy attachment@2x.png (2 ms)
|
523
|
-
✓ Copy attachments_links@2x.png (2 ms)
|
524
|
-
✓ Copy attachments.png (2 ms)
|
525
|
-
✓ Copy gray_cancel@2x.png (2 ms)
|
526
|
-
✓ Copy notif_cell_bg.png (1 ms)
|
527
|
-
✓ Copy notif_cell_bg@2x.png (1 ms)
|
528
|
-
✓ Copy notif_cell_unread_bg.png (1 ms)
|
529
|
-
✓ Copy notif_cell_unread_bg@2x.png (1 ms)
|
530
|
-
✓ Copy mail@2x.png (0 ms)
|
531
|
-
✓ Copy reply_to.png (0 ms)
|
532
|
-
✓ Copy reply_to@2x.png (0 ms)
|
533
|
-
✓ Copy mugshotPlaceholder.png (0 ms)
|
534
|
-
✓ Copy crossicon.png (0 ms)
|
535
|
-
✓ Copy crossicon@2x.png (0 ms)
|
536
|
-
✓ Copy whitethumb_big@2x.png (0 ms)
|
537
|
-
✓ Copy likeicon.png (0 ms)
|
538
|
-
✓ Copy Icon-120.png (0 ms)
|
539
|
-
✓ Copy mobileiconwhite.png (0 ms)
|
540
|
-
✓ Copy profileicon.png (0 ms)
|
541
|
-
✓ Copy likeicon@2x.png (0 ms)
|
542
|
-
✓ Copy mobileiconwhite@2x.png (9 ms)
|
543
|
-
✓ Copy profileicon@2x.png (9 ms)
|
544
|
-
✓ Copy messagebackwhite.png (9 ms)
|
545
|
-
✓ Copy messagebackwhite@2x.png (9 ms)
|
546
|
-
✓ Copy screenshot1.png (10 ms)
|
547
|
-
✓ Copy webicon.png (9 ms)
|
548
|
-
✓ Copy webicon@2x.png (10 ms)
|
549
|
-
✓ Copy arrow_left.png (10 ms)
|
550
|
-
✓ Copy arrow_left@2x.png (10 ms)
|
551
|
-
✓ Copy plus.png (10 ms)
|
552
|
-
✓ Copy web@2x.png (11 ms)
|
553
|
-
✓ Copy plus@2x.png (10 ms)
|
554
|
-
✓ Copy original_yammer_sound.wav (12 ms)
|
555
|
-
✓ Copy chatlist@2x.png (9 ms)
|
556
|
-
✓ Copy back.png (9 ms)
|
557
|
-
✓ Copy mugshotPlaceholder@2x.png (9 ms)
|
558
|
-
✓ Copy groups@2x.png (9 ms)
|
559
|
-
✓ Copy back@2x.png (8 ms)
|
560
|
-
✓ Copy account_icon.png (8 ms)
|
561
|
-
✓ Copy account_icon@2x.png (8 ms)
|
562
|
-
✓ Copy Localizable.strings (12 ms)
|
563
|
-
✓ Copy Icon.png (7 ms)
|
564
|
-
✓ Copy Icon@2x.png (8 ms)
|
565
|
-
✓ Copy add_member.png (8 ms)
|
566
|
-
✓ Copy add_member@2x.png (7 ms)
|
567
|
-
✓ Copy eye@2x.png (7 ms)
|
568
|
-
✓ Copy left-carrot.png (7 ms)
|
569
|
-
✓ Copy left-carrot@2x.png (7 ms)
|
570
|
-
✓ Copy right_carrot.png (7 ms)
|
571
|
-
✓ Copy right_carrot@2x.png (8 ms)
|
572
|
-
✓ Copy x_button.png (8 ms)
|
573
|
-
✓ Copy x_button@2x.png (8 ms)
|
574
|
-
✓ Copy BG.png (7 ms)
|
575
|
-
✓ Copy BG@2x.png (7 ms)
|
576
|
-
✓ Copy post.png (7 ms)
|
577
|
-
✓ Copy post@2x.png (7 ms)
|
578
|
-
✓ Copy top-bar-background-landscape.png (7 ms)
|
579
|
-
✓ Copy top-bar-background-landscape@2x.png (6 ms)
|
580
|
-
✓ Copy top-bar-background-portrait.png (6 ms)
|
581
|
-
✓ Copy top-bar-background-portrait@2x.png (6 ms)
|
582
|
-
✓ Copy gray_cancel.png (6 ms)
|
583
|
-
✓ Copy top-bar-background-landscape-568h@2x.png (5 ms)
|
584
|
-
✓ Copy iphone.png (5 ms)
|
585
|
-
✓ Copy Hackday-Icon.png (5 ms)
|
586
|
-
✓ Copy iphone@2x.png (4 ms)
|
587
|
-
✓ Copy mail.png (4 ms)
|
588
|
-
✓ Copy check.png (4 ms)
|
589
|
-
✓ Copy check@2x.png (7 ms)
|
590
|
-
✓ Copy info@2x.png (7 ms)
|
591
|
-
✓ Copy phone.png (7 ms)
|
592
|
-
✓ Copy groups.png (7 ms)
|
593
|
-
✓ Copy mail_b@2x.png (7 ms)
|
594
|
-
✓ Copy mail_b.png (7 ms)
|
595
|
-
✓ Copy member-added.png (7 ms)
|
596
|
-
✓ Copy member-added@2x.png (6 ms)
|
597
|
-
✓ Copy newchat.png (6 ms)
|
598
|
-
✓ Copy Hackday-Icon-120.png (6 ms)
|
599
|
-
✓ Copy phone@2x.png (6 ms)
|
600
|
-
✓ Copy newchat@2x.png (5 ms)
|
601
|
-
✓ Copy whitethumb_big.png (6 ms)
|
602
|
-
✓ Copy white_iphone@2x.png (5 ms)
|
603
|
-
✓ Copy eye.png (5 ms)
|
604
|
-
✓ Copy gear.png (5 ms)
|
605
|
-
✓ Copy gear@2x.png (5 ms)
|
606
|
-
✓ Copy whitethumb@2x.png (5 ms)
|
607
|
-
✓ Run custom shell script 'Copy AutoUpdater into app bundle' (9 ms)
|
608
|
-
✓ Run custom shell script 'Copy Pods Resources' (818 ms)
|
609
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
610
|
-
/Users/musalj/code/yammer/ios-chat/Pods/CrittercismSDK/CrittercismSDK/dsym_upload.sh
|
611
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamCore/Libraries/SVProgressHUD/SVProgressHUD.bundle/error.png
|
612
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamCore/Libraries/SVProgressHUD/SVProgressHUD.bundle/error@2x.png
|
613
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamCore/Libraries/SVProgressHUD/SVProgressHUD.bundle/success.png
|
614
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamCore/Libraries/SVProgressHUD/SVProgressHUD.bundle/success@2x.png
|
615
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamCore/Resources/Images/yammer-tagline.png
|
616
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamCore/Resources/Images/yammer-tagline@2x.png
|
617
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamCore/Libraries/SVProgressHUD/SVProgressHUD.bundle
|
618
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamCore/Resources/Strings/en.lproj
|
619
|
-
xcrun momc "/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamData/YamDataModel.xcdatamodeld" "/Users/musalj/Library/Developer/Xcode/DerivedData/YammerNow-gxwwuvyzqubnbfaesalfplrycxpe/Build/Products/Debug-iphonesimulator/YammerNow.app/YamDataModel.momd"
|
620
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Bundles/NoticeView.bundle/notice_error_icon.png
|
621
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Bundles/NoticeView.bundle/notice_error_icon@2x.png
|
622
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Bundles/NoticeView.bundle/notice_success_icon.png
|
623
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Bundles/NoticeView.bundle/notice_success_icon@2x.png
|
624
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Bundles/NoticeView.bundle/up.png
|
625
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Bundles/NoticeView.bundle/up@2x.png
|
626
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Fonts/SegoeUI/segoeui.ttf
|
627
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Fonts/SegoeUI/segoeuib.ttf
|
628
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Fonts/SegoeUI/segoeuii.ttf
|
629
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Fonts/SegoeUI/segoeuil.ttf
|
630
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Fonts/SegoeUI/segoeuisl.ttf
|
631
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Fonts/SegoeUI/segoeuiz.ttf
|
632
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Fonts/SegoeUI/seguili.ttf
|
633
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Fonts/SegoeUI/seguisb.ttf
|
634
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Fonts/SegoeUI/seguisbi.ttf
|
635
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Fonts/SegoeUI/seguisli.ttf
|
636
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/bkgd_select.png
|
637
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/bkgd_select@2x.png
|
638
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/bkgd_unselect.png
|
639
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/bkgd_unselect@2x.png
|
640
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/both_select@2x.png
|
641
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/both_unselect@2x.png
|
642
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/checkmark.png
|
643
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/checkmark@2x.png
|
644
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/crossicon.png
|
645
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/crossicon@2x.png
|
646
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/left_select.png
|
647
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/left_select@2x.png
|
648
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/mobileicon.png
|
649
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/mobileicon@2x.png
|
650
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/right_select.png
|
651
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/right_select@2x.png
|
652
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/status_active.png
|
653
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/status_active@2x.png
|
654
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/status_away.png
|
655
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/status_away@2x.png
|
656
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/status_mobile.png
|
657
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/status_mobile@2x.png
|
658
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/status_offline.png
|
659
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/status_offline@2x.png
|
660
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/webicon.png
|
661
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/webicon@2x.png
|
662
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/yammer_logo@2x.png
|
663
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/yammerlogo.png
|
664
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Images/yammerlogo@2x.png
|
665
|
-
/Users/musalj/code/yammer/ios-chat/Pods/../Shared/YamKit/YamUI/Resources/Bundles/NoticeView.bundle
|
666
|
-
building file list ... done
|
667
|
-
bkgd_select.png
|
668
|
-
bkgd_select@2x.png
|
669
|
-
bkgd_unselect.png
|
670
|
-
bkgd_unselect@2x.png
|
671
|
-
both_select@2x.png
|
672
|
-
both_unselect@2x.png
|
673
|
-
checkmark.png
|
674
|
-
checkmark@2x.png
|
675
|
-
crossicon.png
|
676
|
-
crossicon@2x.png
|
677
|
-
dsym_upload.sh
|
678
|
-
error.png
|
679
|
-
error@2x.png
|
680
|
-
left_select.png
|
681
|
-
left_select@2x.png
|
682
|
-
mobileicon.png
|
683
|
-
mobileicon@2x.png
|
684
|
-
notice_error_icon.png
|
685
|
-
notice_error_icon@2x.png
|
686
|
-
notice_success_icon.png
|
687
|
-
notice_success_icon@2x.png
|
688
|
-
right_select.png
|
689
|
-
right_select@2x.png
|
690
|
-
segoeui.ttf
|
691
|
-
segoeuib.ttf
|
692
|
-
segoeuii.ttf
|
693
|
-
segoeuil.ttf
|
694
|
-
segoeuisl.ttf
|
695
|
-
segoeuiz.ttf
|
696
|
-
seguili.ttf
|
697
|
-
seguisb.ttf
|
698
|
-
seguisbi.ttf
|
699
|
-
seguisli.ttf
|
700
|
-
status_active.png
|
701
|
-
status_active@2x.png
|
702
|
-
status_away.png
|
703
|
-
status_away@2x.png
|
704
|
-
status_mobile.png
|
705
|
-
status_mobile@2x.png
|
706
|
-
status_offline.png
|
707
|
-
status_offline@2x.png
|
708
|
-
success.png
|
709
|
-
success@2x.png
|
710
|
-
up.png
|
711
|
-
up@2x.png
|
712
|
-
webicon.png
|
713
|
-
webicon@2x.png
|
714
|
-
yammer-tagline.png
|
715
|
-
yammer-tagline@2x.png
|
716
|
-
yammer_logo@2x.png
|
717
|
-
yammerlogo.png
|
718
|
-
yammerlogo@2x.png
|
719
|
-
NoticeView.bundle/
|
720
|
-
NoticeView.bundle/notice_error_icon.png
|
721
|
-
NoticeView.bundle/notice_error_icon@2x.png
|
722
|
-
NoticeView.bundle/notice_success_icon.png
|
723
|
-
NoticeView.bundle/notice_success_icon@2x.png
|
724
|
-
NoticeView.bundle/up.png
|
725
|
-
NoticeView.bundle/up@2x.png
|
726
|
-
SVProgressHUD.bundle/
|
727
|
-
SVProgressHUD.bundle/error.png
|
728
|
-
SVProgressHUD.bundle/error@2x.png
|
729
|
-
SVProgressHUD.bundle/success.png
|
730
|
-
SVProgressHUD.bundle/success@2x.png
|
731
|
-
en.lproj/
|
732
|
-
en.lproj/YamKit.strings
|
733
|
-
|
734
|
-
sent 5803334 bytes received 1424 bytes 3869838.67 bytes/sec
|
735
|
-
total size is 5798475 speedup is 1.00
|
736
|
-
/* com.apple.actool.compilation-results */
|
737
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
738
|
-
|
739
|
-
|
740
|
-
** BUILD SUCCEEDED ** (10050 ms)
|