slather 0.0.3 → 0.0.21
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/.gitignore +0 -18
- data/README.md +10 -49
- data/bin/slather +8 -76
- data/lib/slather.rb +0 -5
- data/lib/slather/coverage_file.rb +5 -12
- data/lib/slather/coveralls_coverage_file.rb +1 -1
- data/lib/slather/project.rb +30 -75
- data/lib/slather/version.rb +1 -1
- metadata +3 -39
- data/lib/slather/coverage_service/coveralls.rb +0 -52
- data/lib/slather/coverage_service/simple_output.rb +0 -32
- data/spec/fixtures/fixtures.xcodeproj/project.pbxproj +0 -452
- data/spec/fixtures/fixtures.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
- data/spec/fixtures/fixtures/Supporting Files/fixtures-Prefix.pch +0 -9
- data/spec/fixtures/fixtures/fixtures.h +0 -16
- data/spec/fixtures/fixtures/fixtures.m +0 -23
- data/spec/fixtures/fixtures/more_files/peekaview.h +0 -13
- data/spec/fixtures/fixtures/more_files/peekaview.m +0 -31
- data/spec/fixtures/fixturesTests/Supporting Files/en.lproj/InfoPlist.strings +0 -2
- data/spec/fixtures/fixturesTests/Supporting Files/fixturesTests-Info.plist +0 -22
- data/spec/fixtures/fixturesTests/fixturesTests.m +0 -36
- data/spec/fixtures/fixturesTests/peekaviewTests.m +0 -34
- data/spec/slather/coverage_file_spec.rb +0 -136
- data/spec/slather/coverage_service/coveralls_spec.rb +0 -66
- data/spec/slather/coverage_service/simple_output_spec.rb +0 -26
- data/spec/slather/fixtures.gcno +0 -0
- data/spec/slather/project_spec.rb +0 -219
- data/spec/spec_helper.rb +0 -10
@@ -1,52 +0,0 @@
|
|
1
|
-
module Slather
|
2
|
-
module CoverageService
|
3
|
-
module Coveralls
|
4
|
-
|
5
|
-
def coverage_file_class
|
6
|
-
Slather::CoverallsCoverageFile
|
7
|
-
end
|
8
|
-
private :coverage_file_class
|
9
|
-
|
10
|
-
def travis_job_id
|
11
|
-
ENV['TRAVIS_JOB_ID']
|
12
|
-
end
|
13
|
-
private :travis_job_id
|
14
|
-
|
15
|
-
def coveralls_coverage_data
|
16
|
-
if ci_service == :travis_ci
|
17
|
-
if travis_job_id
|
18
|
-
{
|
19
|
-
:service_job_id => travis_job_id,
|
20
|
-
:service_name => "travis-ci",
|
21
|
-
:source_files => coverage_files.map(&:as_json)
|
22
|
-
}.to_json
|
23
|
-
else
|
24
|
-
raise StandardError, "Environment variable `TRAVIS_JOB_ID` not set. Is this running on a travis build?"
|
25
|
-
end
|
26
|
-
else
|
27
|
-
raise StandardError, "No support for ci named #{ci_service}"
|
28
|
-
end
|
29
|
-
end
|
30
|
-
private :coveralls_coverage_data
|
31
|
-
|
32
|
-
def post
|
33
|
-
f = File.open('coveralls_json_file', 'w+')
|
34
|
-
begin
|
35
|
-
f.write(coveralls_coverage_data)
|
36
|
-
f.close
|
37
|
-
`curl -s --form json_file=@#{f.path} #{coveralls_api_jobs_path}`
|
38
|
-
rescue StandardError => e
|
39
|
-
FileUtils.rm(f)
|
40
|
-
raise e
|
41
|
-
end
|
42
|
-
FileUtils.rm(f)
|
43
|
-
end
|
44
|
-
|
45
|
-
def coveralls_api_jobs_path
|
46
|
-
"https://coveralls.io/api/v1/jobs"
|
47
|
-
end
|
48
|
-
private :coveralls_api_jobs_path
|
49
|
-
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
@@ -1,32 +0,0 @@
|
|
1
|
-
module Slather
|
2
|
-
module CoverageService
|
3
|
-
module SimpleOutput
|
4
|
-
|
5
|
-
def coverage_file_class
|
6
|
-
Slather::CoverallsCoverageFile
|
7
|
-
end
|
8
|
-
private :coverage_file_class
|
9
|
-
|
10
|
-
def post
|
11
|
-
total_project_lines = 0
|
12
|
-
total_project_lines_tested = 0
|
13
|
-
coverage_files.each do |coverage_file|
|
14
|
-
# ignore lines that don't count towards coverage (comments, whitespace, etc). These are nil in the array.
|
15
|
-
coverage_data = coverage_file.coverage_data.compact
|
16
|
-
|
17
|
-
lines_tested = coverage_data.select { |cd| cd > 0 }.count
|
18
|
-
total_lines = coverage_data.count
|
19
|
-
percentage = '%.2f' % [(lines_tested / total_lines.to_f) * 100.0]
|
20
|
-
|
21
|
-
total_project_lines_tested += lines_tested
|
22
|
-
total_project_lines += total_lines
|
23
|
-
|
24
|
-
puts "#{coverage_file.source_file_pathname_relative_to_repo_root}: #{lines_tested} of #{total_lines} lines (#{percentage}%)"
|
25
|
-
end
|
26
|
-
total_percentage = '%.2f' % [(total_project_lines_tested / total_project_lines.to_f) * 100.0]
|
27
|
-
puts "Test Coverage: #{total_percentage}%"
|
28
|
-
end
|
29
|
-
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
@@ -1,452 +0,0 @@
|
|
1
|
-
// !$*UTF8*$!
|
2
|
-
{
|
3
|
-
archiveVersion = 1;
|
4
|
-
classes = {
|
5
|
-
};
|
6
|
-
objectVersion = 46;
|
7
|
-
objects = {
|
8
|
-
|
9
|
-
/* Begin PBXBuildFile section */
|
10
|
-
8C52AEF7195AAE32008A882A /* peekaview.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C52AEF5195AAE32008A882A /* peekaview.h */; };
|
11
|
-
8C52AEF8195AAE33008A882A /* peekaview.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C52AEF6195AAE32008A882A /* peekaview.m */; };
|
12
|
-
8C52AEFA195AAE70008A882A /* peekaviewTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C52AEF9195AAE70008A882A /* peekaviewTests.m */; };
|
13
|
-
8C9A2031195965F10013B6B3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9A2030195965F10013B6B3 /* Cocoa.framework */; };
|
14
|
-
8C9A203B195965F10013B6B3 /* fixtures.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C9A203A195965F10013B6B3 /* fixtures.m */; };
|
15
|
-
8C9A2042195965F10013B6B3 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9A2041195965F10013B6B3 /* XCTest.framework */; };
|
16
|
-
8C9A2043195965F10013B6B3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9A2030195965F10013B6B3 /* Cocoa.framework */; };
|
17
|
-
8C9A2046195965F10013B6B3 /* libfixtures.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9A202D195965F10013B6B3 /* libfixtures.a */; };
|
18
|
-
8C9A204C195965F10013B6B3 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8C9A204A195965F10013B6B3 /* InfoPlist.strings */; };
|
19
|
-
8C9A204E195965F10013B6B3 /* fixturesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C9A204D195965F10013B6B3 /* fixturesTests.m */; };
|
20
|
-
/* End PBXBuildFile section */
|
21
|
-
|
22
|
-
/* Begin PBXContainerItemProxy section */
|
23
|
-
8C9A2044195965F10013B6B3 /* PBXContainerItemProxy */ = {
|
24
|
-
isa = PBXContainerItemProxy;
|
25
|
-
containerPortal = 8C9A2025195965F00013B6B3 /* Project object */;
|
26
|
-
proxyType = 1;
|
27
|
-
remoteGlobalIDString = 8C9A202C195965F10013B6B3;
|
28
|
-
remoteInfo = fixtures;
|
29
|
-
};
|
30
|
-
/* End PBXContainerItemProxy section */
|
31
|
-
|
32
|
-
/* Begin PBXFileReference section */
|
33
|
-
8C52AEF5195AAE32008A882A /* peekaview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = peekaview.h; sourceTree = "<group>"; };
|
34
|
-
8C52AEF6195AAE32008A882A /* peekaview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = peekaview.m; sourceTree = "<group>"; };
|
35
|
-
8C52AEF9195AAE70008A882A /* peekaviewTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = peekaviewTests.m; sourceTree = "<group>"; };
|
36
|
-
8C9A202D195965F10013B6B3 /* libfixtures.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libfixtures.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
37
|
-
8C9A2030195965F10013B6B3 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
|
38
|
-
8C9A2033195965F10013B6B3 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
39
|
-
8C9A2034195965F10013B6B3 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
|
40
|
-
8C9A2035195965F10013B6B3 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
|
41
|
-
8C9A2038195965F10013B6B3 /* fixtures-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "fixtures-Prefix.pch"; sourceTree = "<group>"; };
|
42
|
-
8C9A2039195965F10013B6B3 /* fixtures.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fixtures.h; sourceTree = "<group>"; };
|
43
|
-
8C9A203A195965F10013B6B3 /* fixtures.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = fixtures.m; sourceTree = "<group>"; };
|
44
|
-
8C9A2040195965F10013B6B3 /* fixturesTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = fixturesTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
45
|
-
8C9A2041195965F10013B6B3 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
|
46
|
-
8C9A2049195965F10013B6B3 /* fixturesTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "fixturesTests-Info.plist"; sourceTree = "<group>"; };
|
47
|
-
8C9A204B195965F10013B6B3 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
48
|
-
8C9A204D195965F10013B6B3 /* fixturesTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = fixturesTests.m; sourceTree = "<group>"; };
|
49
|
-
/* End PBXFileReference section */
|
50
|
-
|
51
|
-
/* Begin PBXFrameworksBuildPhase section */
|
52
|
-
8C9A202A195965F10013B6B3 /* Frameworks */ = {
|
53
|
-
isa = PBXFrameworksBuildPhase;
|
54
|
-
buildActionMask = 2147483647;
|
55
|
-
files = (
|
56
|
-
8C9A2031195965F10013B6B3 /* Cocoa.framework in Frameworks */,
|
57
|
-
);
|
58
|
-
runOnlyForDeploymentPostprocessing = 0;
|
59
|
-
};
|
60
|
-
8C9A203D195965F10013B6B3 /* Frameworks */ = {
|
61
|
-
isa = PBXFrameworksBuildPhase;
|
62
|
-
buildActionMask = 2147483647;
|
63
|
-
files = (
|
64
|
-
8C9A2046195965F10013B6B3 /* libfixtures.a in Frameworks */,
|
65
|
-
8C9A2043195965F10013B6B3 /* Cocoa.framework in Frameworks */,
|
66
|
-
8C9A2042195965F10013B6B3 /* XCTest.framework in Frameworks */,
|
67
|
-
);
|
68
|
-
runOnlyForDeploymentPostprocessing = 0;
|
69
|
-
};
|
70
|
-
/* End PBXFrameworksBuildPhase section */
|
71
|
-
|
72
|
-
/* Begin PBXGroup section */
|
73
|
-
8C52AEF4195AAE16008A882A /* more_files */ = {
|
74
|
-
isa = PBXGroup;
|
75
|
-
children = (
|
76
|
-
8C52AEF5195AAE32008A882A /* peekaview.h */,
|
77
|
-
8C52AEF6195AAE32008A882A /* peekaview.m */,
|
78
|
-
);
|
79
|
-
path = more_files;
|
80
|
-
sourceTree = "<group>";
|
81
|
-
};
|
82
|
-
8C9A2024195965F00013B6B3 = {
|
83
|
-
isa = PBXGroup;
|
84
|
-
children = (
|
85
|
-
8C9A2036195965F10013B6B3 /* fixtures */,
|
86
|
-
8C9A2047195965F10013B6B3 /* fixturesTests */,
|
87
|
-
8C9A202F195965F10013B6B3 /* Frameworks */,
|
88
|
-
8C9A202E195965F10013B6B3 /* Products */,
|
89
|
-
);
|
90
|
-
sourceTree = "<group>";
|
91
|
-
};
|
92
|
-
8C9A202E195965F10013B6B3 /* Products */ = {
|
93
|
-
isa = PBXGroup;
|
94
|
-
children = (
|
95
|
-
8C9A202D195965F10013B6B3 /* libfixtures.a */,
|
96
|
-
8C9A2040195965F10013B6B3 /* fixturesTests.xctest */,
|
97
|
-
);
|
98
|
-
name = Products;
|
99
|
-
sourceTree = "<group>";
|
100
|
-
};
|
101
|
-
8C9A202F195965F10013B6B3 /* Frameworks */ = {
|
102
|
-
isa = PBXGroup;
|
103
|
-
children = (
|
104
|
-
8C9A2030195965F10013B6B3 /* Cocoa.framework */,
|
105
|
-
8C9A2041195965F10013B6B3 /* XCTest.framework */,
|
106
|
-
8C9A2032195965F10013B6B3 /* Other Frameworks */,
|
107
|
-
);
|
108
|
-
name = Frameworks;
|
109
|
-
sourceTree = "<group>";
|
110
|
-
};
|
111
|
-
8C9A2032195965F10013B6B3 /* Other Frameworks */ = {
|
112
|
-
isa = PBXGroup;
|
113
|
-
children = (
|
114
|
-
8C9A2033195965F10013B6B3 /* Foundation.framework */,
|
115
|
-
8C9A2034195965F10013B6B3 /* CoreData.framework */,
|
116
|
-
8C9A2035195965F10013B6B3 /* AppKit.framework */,
|
117
|
-
);
|
118
|
-
name = "Other Frameworks";
|
119
|
-
sourceTree = "<group>";
|
120
|
-
};
|
121
|
-
8C9A2036195965F10013B6B3 /* fixtures */ = {
|
122
|
-
isa = PBXGroup;
|
123
|
-
children = (
|
124
|
-
8C52AEF4195AAE16008A882A /* more_files */,
|
125
|
-
8C9A2039195965F10013B6B3 /* fixtures.h */,
|
126
|
-
8C9A203A195965F10013B6B3 /* fixtures.m */,
|
127
|
-
8C9A2037195965F10013B6B3 /* Supporting Files */,
|
128
|
-
);
|
129
|
-
path = fixtures;
|
130
|
-
sourceTree = "<group>";
|
131
|
-
};
|
132
|
-
8C9A2037195965F10013B6B3 /* Supporting Files */ = {
|
133
|
-
isa = PBXGroup;
|
134
|
-
children = (
|
135
|
-
8C9A2038195965F10013B6B3 /* fixtures-Prefix.pch */,
|
136
|
-
);
|
137
|
-
path = "Supporting Files";
|
138
|
-
sourceTree = "<group>";
|
139
|
-
};
|
140
|
-
8C9A2047195965F10013B6B3 /* fixturesTests */ = {
|
141
|
-
isa = PBXGroup;
|
142
|
-
children = (
|
143
|
-
8C9A204D195965F10013B6B3 /* fixturesTests.m */,
|
144
|
-
8C9A2048195965F10013B6B3 /* Supporting Files */,
|
145
|
-
8C52AEF9195AAE70008A882A /* peekaviewTests.m */,
|
146
|
-
);
|
147
|
-
path = fixturesTests;
|
148
|
-
sourceTree = "<group>";
|
149
|
-
};
|
150
|
-
8C9A2048195965F10013B6B3 /* Supporting Files */ = {
|
151
|
-
isa = PBXGroup;
|
152
|
-
children = (
|
153
|
-
8C9A2049195965F10013B6B3 /* fixturesTests-Info.plist */,
|
154
|
-
8C9A204A195965F10013B6B3 /* InfoPlist.strings */,
|
155
|
-
);
|
156
|
-
path = "Supporting Files";
|
157
|
-
sourceTree = "<group>";
|
158
|
-
};
|
159
|
-
/* End PBXGroup section */
|
160
|
-
|
161
|
-
/* Begin PBXHeadersBuildPhase section */
|
162
|
-
8C9A202B195965F10013B6B3 /* Headers */ = {
|
163
|
-
isa = PBXHeadersBuildPhase;
|
164
|
-
buildActionMask = 2147483647;
|
165
|
-
files = (
|
166
|
-
8C52AEF7195AAE32008A882A /* peekaview.h in Headers */,
|
167
|
-
);
|
168
|
-
runOnlyForDeploymentPostprocessing = 0;
|
169
|
-
};
|
170
|
-
/* End PBXHeadersBuildPhase section */
|
171
|
-
|
172
|
-
/* Begin PBXNativeTarget section */
|
173
|
-
8C9A202C195965F10013B6B3 /* fixtures */ = {
|
174
|
-
isa = PBXNativeTarget;
|
175
|
-
buildConfigurationList = 8C9A2051195965F10013B6B3 /* Build configuration list for PBXNativeTarget "fixtures" */;
|
176
|
-
buildPhases = (
|
177
|
-
8C9A2029195965F10013B6B3 /* Sources */,
|
178
|
-
8C9A202A195965F10013B6B3 /* Frameworks */,
|
179
|
-
8C9A202B195965F10013B6B3 /* Headers */,
|
180
|
-
);
|
181
|
-
buildRules = (
|
182
|
-
);
|
183
|
-
dependencies = (
|
184
|
-
);
|
185
|
-
name = fixtures;
|
186
|
-
productName = fixtures;
|
187
|
-
productReference = 8C9A202D195965F10013B6B3 /* libfixtures.a */;
|
188
|
-
productType = "com.apple.product-type.library.static";
|
189
|
-
};
|
190
|
-
8C9A203F195965F10013B6B3 /* fixturesTests */ = {
|
191
|
-
isa = PBXNativeTarget;
|
192
|
-
buildConfigurationList = 8C9A2054195965F10013B6B3 /* Build configuration list for PBXNativeTarget "fixturesTests" */;
|
193
|
-
buildPhases = (
|
194
|
-
8C9A203C195965F10013B6B3 /* Sources */,
|
195
|
-
8C9A203D195965F10013B6B3 /* Frameworks */,
|
196
|
-
8C9A203E195965F10013B6B3 /* Resources */,
|
197
|
-
);
|
198
|
-
buildRules = (
|
199
|
-
);
|
200
|
-
dependencies = (
|
201
|
-
8C9A2045195965F10013B6B3 /* PBXTargetDependency */,
|
202
|
-
);
|
203
|
-
name = fixturesTests;
|
204
|
-
productName = fixturesTests;
|
205
|
-
productReference = 8C9A2040195965F10013B6B3 /* fixturesTests.xctest */;
|
206
|
-
productType = "com.apple.product-type.bundle.unit-test";
|
207
|
-
};
|
208
|
-
/* End PBXNativeTarget section */
|
209
|
-
|
210
|
-
/* Begin PBXProject section */
|
211
|
-
8C9A2025195965F00013B6B3 /* Project object */ = {
|
212
|
-
isa = PBXProject;
|
213
|
-
attributes = {
|
214
|
-
LastUpgradeCheck = 0510;
|
215
|
-
ORGANIZATIONNAME = marklarr;
|
216
|
-
};
|
217
|
-
buildConfigurationList = 8C9A2028195965F00013B6B3 /* Build configuration list for PBXProject "fixtures" */;
|
218
|
-
compatibilityVersion = "Xcode 3.2";
|
219
|
-
developmentRegion = English;
|
220
|
-
hasScannedForEncodings = 0;
|
221
|
-
knownRegions = (
|
222
|
-
en,
|
223
|
-
);
|
224
|
-
mainGroup = 8C9A2024195965F00013B6B3;
|
225
|
-
productRefGroup = 8C9A202E195965F10013B6B3 /* Products */;
|
226
|
-
projectDirPath = "";
|
227
|
-
projectRoot = "";
|
228
|
-
targets = (
|
229
|
-
8C9A202C195965F10013B6B3 /* fixtures */,
|
230
|
-
8C9A203F195965F10013B6B3 /* fixturesTests */,
|
231
|
-
);
|
232
|
-
};
|
233
|
-
/* End PBXProject section */
|
234
|
-
|
235
|
-
/* Begin PBXResourcesBuildPhase section */
|
236
|
-
8C9A203E195965F10013B6B3 /* Resources */ = {
|
237
|
-
isa = PBXResourcesBuildPhase;
|
238
|
-
buildActionMask = 2147483647;
|
239
|
-
files = (
|
240
|
-
8C9A204C195965F10013B6B3 /* InfoPlist.strings in Resources */,
|
241
|
-
);
|
242
|
-
runOnlyForDeploymentPostprocessing = 0;
|
243
|
-
};
|
244
|
-
/* End PBXResourcesBuildPhase section */
|
245
|
-
|
246
|
-
/* Begin PBXSourcesBuildPhase section */
|
247
|
-
8C9A2029195965F10013B6B3 /* Sources */ = {
|
248
|
-
isa = PBXSourcesBuildPhase;
|
249
|
-
buildActionMask = 2147483647;
|
250
|
-
files = (
|
251
|
-
8C9A203B195965F10013B6B3 /* fixtures.m in Sources */,
|
252
|
-
8C52AEF8195AAE33008A882A /* peekaview.m in Sources */,
|
253
|
-
);
|
254
|
-
runOnlyForDeploymentPostprocessing = 0;
|
255
|
-
};
|
256
|
-
8C9A203C195965F10013B6B3 /* Sources */ = {
|
257
|
-
isa = PBXSourcesBuildPhase;
|
258
|
-
buildActionMask = 2147483647;
|
259
|
-
files = (
|
260
|
-
8C9A204E195965F10013B6B3 /* fixturesTests.m in Sources */,
|
261
|
-
8C52AEFA195AAE70008A882A /* peekaviewTests.m in Sources */,
|
262
|
-
);
|
263
|
-
runOnlyForDeploymentPostprocessing = 0;
|
264
|
-
};
|
265
|
-
/* End PBXSourcesBuildPhase section */
|
266
|
-
|
267
|
-
/* Begin PBXTargetDependency section */
|
268
|
-
8C9A2045195965F10013B6B3 /* PBXTargetDependency */ = {
|
269
|
-
isa = PBXTargetDependency;
|
270
|
-
target = 8C9A202C195965F10013B6B3 /* fixtures */;
|
271
|
-
targetProxy = 8C9A2044195965F10013B6B3 /* PBXContainerItemProxy */;
|
272
|
-
};
|
273
|
-
/* End PBXTargetDependency section */
|
274
|
-
|
275
|
-
/* Begin PBXVariantGroup section */
|
276
|
-
8C9A204A195965F10013B6B3 /* InfoPlist.strings */ = {
|
277
|
-
isa = PBXVariantGroup;
|
278
|
-
children = (
|
279
|
-
8C9A204B195965F10013B6B3 /* en */,
|
280
|
-
);
|
281
|
-
name = InfoPlist.strings;
|
282
|
-
sourceTree = "<group>";
|
283
|
-
};
|
284
|
-
/* End PBXVariantGroup section */
|
285
|
-
|
286
|
-
/* Begin XCBuildConfiguration section */
|
287
|
-
8C9A204F195965F10013B6B3 /* Debug */ = {
|
288
|
-
isa = XCBuildConfiguration;
|
289
|
-
buildSettings = {
|
290
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
291
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
292
|
-
CLANG_CXX_LIBRARY = "libc++";
|
293
|
-
CLANG_ENABLE_MODULES = YES;
|
294
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
295
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
296
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
297
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
298
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
299
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
300
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
301
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
302
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
303
|
-
COPY_PHASE_STRIP = NO;
|
304
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
305
|
-
GCC_DYNAMIC_NO_PIC = NO;
|
306
|
-
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
307
|
-
GCC_GENERATE_TEST_COVERAGE_FILES = YES;
|
308
|
-
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
|
309
|
-
GCC_OPTIMIZATION_LEVEL = 0;
|
310
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
311
|
-
"DEBUG=1",
|
312
|
-
"$(inherited)",
|
313
|
-
);
|
314
|
-
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
315
|
-
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
316
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
317
|
-
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
318
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
319
|
-
GCC_WARN_UNUSED_FUNCTION = YES;
|
320
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
321
|
-
MACOSX_DEPLOYMENT_TARGET = 10.9;
|
322
|
-
ONLY_ACTIVE_ARCH = YES;
|
323
|
-
SDKROOT = macosx;
|
324
|
-
};
|
325
|
-
name = Debug;
|
326
|
-
};
|
327
|
-
8C9A2050195965F10013B6B3 /* Release */ = {
|
328
|
-
isa = XCBuildConfiguration;
|
329
|
-
buildSettings = {
|
330
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
331
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
332
|
-
CLANG_CXX_LIBRARY = "libc++";
|
333
|
-
CLANG_ENABLE_MODULES = YES;
|
334
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
335
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
336
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
337
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
338
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
339
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
340
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
341
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
342
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
343
|
-
COPY_PHASE_STRIP = YES;
|
344
|
-
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
345
|
-
ENABLE_NS_ASSERTIONS = NO;
|
346
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
347
|
-
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
348
|
-
GCC_GENERATE_TEST_COVERAGE_FILES = YES;
|
349
|
-
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
|
350
|
-
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
351
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
352
|
-
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
353
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
354
|
-
GCC_WARN_UNUSED_FUNCTION = YES;
|
355
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
356
|
-
MACOSX_DEPLOYMENT_TARGET = 10.9;
|
357
|
-
SDKROOT = macosx;
|
358
|
-
};
|
359
|
-
name = Release;
|
360
|
-
};
|
361
|
-
8C9A2052195965F10013B6B3 /* Debug */ = {
|
362
|
-
isa = XCBuildConfiguration;
|
363
|
-
buildSettings = {
|
364
|
-
GCC_GENERATE_TEST_COVERAGE_FILES = YES;
|
365
|
-
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
|
366
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
367
|
-
GCC_PREFIX_HEADER = "fixtures/Supporting Files/fixtures-Prefix.pch";
|
368
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
369
|
-
};
|
370
|
-
name = Debug;
|
371
|
-
};
|
372
|
-
8C9A2053195965F10013B6B3 /* Release */ = {
|
373
|
-
isa = XCBuildConfiguration;
|
374
|
-
buildSettings = {
|
375
|
-
GCC_GENERATE_TEST_COVERAGE_FILES = YES;
|
376
|
-
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
|
377
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
378
|
-
GCC_PREFIX_HEADER = "fixtures/Supporting Files/fixtures-Prefix.pch";
|
379
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
380
|
-
};
|
381
|
-
name = Release;
|
382
|
-
};
|
383
|
-
8C9A2055195965F10013B6B3 /* Debug */ = {
|
384
|
-
isa = XCBuildConfiguration;
|
385
|
-
buildSettings = {
|
386
|
-
COMBINE_HIDPI_IMAGES = YES;
|
387
|
-
FRAMEWORK_SEARCH_PATHS = (
|
388
|
-
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
389
|
-
"$(inherited)",
|
390
|
-
);
|
391
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
392
|
-
GCC_PREFIX_HEADER = "fixtures/Supporting Files/fixtures-Prefix.pch";
|
393
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
394
|
-
"DEBUG=1",
|
395
|
-
"$(inherited)",
|
396
|
-
);
|
397
|
-
INFOPLIST_FILE = "fixturesTests/Supporting Files/fixturesTests-Info.plist";
|
398
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
399
|
-
WRAPPER_EXTENSION = xctest;
|
400
|
-
};
|
401
|
-
name = Debug;
|
402
|
-
};
|
403
|
-
8C9A2056195965F10013B6B3 /* Release */ = {
|
404
|
-
isa = XCBuildConfiguration;
|
405
|
-
buildSettings = {
|
406
|
-
COMBINE_HIDPI_IMAGES = YES;
|
407
|
-
FRAMEWORK_SEARCH_PATHS = (
|
408
|
-
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
409
|
-
"$(inherited)",
|
410
|
-
);
|
411
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
412
|
-
GCC_PREFIX_HEADER = "fixtures/Supporting Files/fixtures-Prefix.pch";
|
413
|
-
INFOPLIST_FILE = "fixturesTests/Supporting Files/fixturesTests-Info.plist";
|
414
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
415
|
-
WRAPPER_EXTENSION = xctest;
|
416
|
-
};
|
417
|
-
name = Release;
|
418
|
-
};
|
419
|
-
/* End XCBuildConfiguration section */
|
420
|
-
|
421
|
-
/* Begin XCConfigurationList section */
|
422
|
-
8C9A2028195965F00013B6B3 /* Build configuration list for PBXProject "fixtures" */ = {
|
423
|
-
isa = XCConfigurationList;
|
424
|
-
buildConfigurations = (
|
425
|
-
8C9A204F195965F10013B6B3 /* Debug */,
|
426
|
-
8C9A2050195965F10013B6B3 /* Release */,
|
427
|
-
);
|
428
|
-
defaultConfigurationIsVisible = 0;
|
429
|
-
defaultConfigurationName = Release;
|
430
|
-
};
|
431
|
-
8C9A2051195965F10013B6B3 /* Build configuration list for PBXNativeTarget "fixtures" */ = {
|
432
|
-
isa = XCConfigurationList;
|
433
|
-
buildConfigurations = (
|
434
|
-
8C9A2052195965F10013B6B3 /* Debug */,
|
435
|
-
8C9A2053195965F10013B6B3 /* Release */,
|
436
|
-
);
|
437
|
-
defaultConfigurationIsVisible = 0;
|
438
|
-
defaultConfigurationName = Release;
|
439
|
-
};
|
440
|
-
8C9A2054195965F10013B6B3 /* Build configuration list for PBXNativeTarget "fixturesTests" */ = {
|
441
|
-
isa = XCConfigurationList;
|
442
|
-
buildConfigurations = (
|
443
|
-
8C9A2055195965F10013B6B3 /* Debug */,
|
444
|
-
8C9A2056195965F10013B6B3 /* Release */,
|
445
|
-
);
|
446
|
-
defaultConfigurationIsVisible = 0;
|
447
|
-
defaultConfigurationName = Release;
|
448
|
-
};
|
449
|
-
/* End XCConfigurationList section */
|
450
|
-
};
|
451
|
-
rootObject = 8C9A2025195965F00013B6B3 /* Project object */;
|
452
|
-
}
|