ashtonw-slather 1.8.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +45 -0
  4. data/.travis.yml +19 -0
  5. data/CHANGELOG.md +132 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE.txt +22 -0
  8. data/README.md +206 -0
  9. data/Rakefile +1 -0
  10. data/assets/highlight.pack.js +1 -0
  11. data/assets/list.min.js +1 -0
  12. data/assets/slather.css +316 -0
  13. data/bin/slather +117 -0
  14. data/docs/logo.jpg +0 -0
  15. data/lib/cocoapods_plugin.rb +10 -0
  16. data/lib/slather.rb +20 -0
  17. data/lib/slather/coverage_file.rb +195 -0
  18. data/lib/slather/coverage_service/cobertura_xml_output.rb +183 -0
  19. data/lib/slather/coverage_service/coveralls.rb +186 -0
  20. data/lib/slather/coverage_service/gutter_json_output.rb +50 -0
  21. data/lib/slather/coverage_service/hardcover.rb +61 -0
  22. data/lib/slather/coverage_service/html_output.rb +244 -0
  23. data/lib/slather/coverage_service/simple_output.rb +31 -0
  24. data/lib/slather/coveralls_coverage_file.rb +13 -0
  25. data/lib/slather/project.rb +132 -0
  26. data/lib/slather/version.rb +3 -0
  27. data/slather.gemspec +32 -0
  28. data/spec/fixtures/fixtures.xcodeproj/project.pbxproj +496 -0
  29. data/spec/fixtures/fixtures.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  30. data/spec/fixtures/fixtures.xcodeproj/xcshareddata/xcschemes/fixtures.xcscheme +69 -0
  31. data/spec/fixtures/fixtures/Supporting Files/fixtures-Prefix.pch +9 -0
  32. data/spec/fixtures/fixtures/fixtures.h +16 -0
  33. data/spec/fixtures/fixtures/fixtures.m +23 -0
  34. data/spec/fixtures/fixtures/fixtures_cpp.cpp +9 -0
  35. data/spec/fixtures/fixtures/fixtures_cpp.h +6 -0
  36. data/spec/fixtures/fixtures/fixtures_m.h +5 -0
  37. data/spec/fixtures/fixtures/fixtures_m.m +5 -0
  38. data/spec/fixtures/fixtures/fixtures_mm.h +5 -0
  39. data/spec/fixtures/fixtures/fixtures_mm.mm +5 -0
  40. data/spec/fixtures/fixtures/more_files/Branches.h +15 -0
  41. data/spec/fixtures/fixtures/more_files/Branches.m +45 -0
  42. data/spec/fixtures/fixtures/more_files/Empty.h +13 -0
  43. data/spec/fixtures/fixtures/more_files/Empty.m +13 -0
  44. data/spec/fixtures/fixtures/more_files/peekaview.h +13 -0
  45. data/spec/fixtures/fixtures/more_files/peekaview.m +31 -0
  46. data/spec/fixtures/fixturesTests/BranchesTests.m +38 -0
  47. data/spec/fixtures/fixturesTests/Supporting Files/en.lproj/InfoPlist.strings +2 -0
  48. data/spec/fixtures/fixturesTests/Supporting Files/fixturesTests-Info.plist +22 -0
  49. data/spec/fixtures/fixturesTests/fixturesTests.m +36 -0
  50. data/spec/fixtures/fixturesTests/peekaviewTests.m +34 -0
  51. data/spec/fixtures/fixtures_html/Branches.m.html +261 -0
  52. data/spec/fixtures/fixtures_html/BranchesTests.m.html +228 -0
  53. data/spec/fixtures/fixtures_html/Empty.m.html +30 -0
  54. data/spec/fixtures/fixtures_html/fixtures.m.html +151 -0
  55. data/spec/fixtures/fixtures_html/fixturesTests.m.html +216 -0
  56. data/spec/fixtures/fixtures_html/fixtures_cpp.cpp.html +30 -0
  57. data/spec/fixtures/fixtures_html/fixtures_m.m.html +30 -0
  58. data/spec/fixtures/fixtures_html/fixtures_mm.mm.html +30 -0
  59. data/spec/fixtures/fixtures_html/index.html +134 -0
  60. data/spec/fixtures/fixtures_html/peekaview.m.html +190 -0
  61. data/spec/fixtures/fixtures_html/peekaviewTests.m.html +206 -0
  62. data/spec/fixtures/gutter.json +1 -0
  63. data/spec/slather/cocoapods_plugin_spec.rb +21 -0
  64. data/spec/slather/coverage_file_spec.rb +337 -0
  65. data/spec/slather/coverage_service/cobertura_xml_spec.rb +49 -0
  66. data/spec/slather/coverage_service/coveralls_spec.rb +122 -0
  67. data/spec/slather/coverage_service/gutter_json_spec.rb +28 -0
  68. data/spec/slather/coverage_service/hardcover_spec.rb +87 -0
  69. data/spec/slather/coverage_service/html_output_spec.rb +179 -0
  70. data/spec/slather/coverage_service/simple_output_spec.rb +35 -0
  71. data/spec/slather/fixtures.gcno +0 -0
  72. data/spec/slather/project_spec.rb +288 -0
  73. data/spec/spec_helper.rb +27 -0
  74. metadata +319 -0
@@ -0,0 +1,3 @@
1
+ module Slather
2
+ VERSION = "1.8.2"
3
+ end
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'slather/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ashtonw-slather"
8
+ spec.version = Slather::VERSION
9
+ spec.authors = ["Mark Larsen"]
10
+ spec.email = ["mark@venmo.com"]
11
+ spec.summary = %q{Test coverage reports for Xcode projects}
12
+ spec.homepage = "https://github.com/venmo/slather"
13
+ spec.license = "MIT"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0")
16
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ["lib"]
19
+
20
+ spec.add_development_dependency "bundler", "~> 1.6"
21
+ spec.add_development_dependency "coveralls"
22
+ spec.add_development_dependency "rake", "~> 10.3"
23
+ spec.add_development_dependency "rspec", "~> 2.14"
24
+ spec.add_development_dependency "pry", "~> 0.9"
25
+ spec.add_development_dependency "cocoapods", "~> 0.39.0"
26
+ spec.add_development_dependency "json_spec", "~> 1.1.4"
27
+ spec.add_development_dependency "equivalent-xml", "~> 0.5.1"
28
+
29
+ spec.add_dependency "clamp", "~> 0.6"
30
+ spec.add_dependency "xcodeproj", "~> 0.28.0"
31
+ spec.add_dependency "nokogiri", "~> 1.6.3"
32
+ end
@@ -0,0 +1,496 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 155BBCA519E9CB6700BACB13 /* Branches.h in Headers */ = {isa = PBXBuildFile; fileRef = 155BBCA319E9CB6700BACB13 /* Branches.h */; };
11
+ 155BBCA619E9CB6700BACB13 /* Branches.m in Sources */ = {isa = PBXBuildFile; fileRef = 155BBCA419E9CB6700BACB13 /* Branches.m */; };
12
+ 155BBCA819E9CCC500BACB13 /* BranchesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 155BBCA719E9CCC500BACB13 /* BranchesTests.m */; };
13
+ 155D8AFE19FED984004666BA /* Empty.h in Headers */ = {isa = PBXBuildFile; fileRef = 155D8AFC19FED984004666BA /* Empty.h */; };
14
+ 155D8AFF19FED984004666BA /* Empty.m in Sources */ = {isa = PBXBuildFile; fileRef = 155D8AFD19FED984004666BA /* Empty.m */; };
15
+ 8C0F0B401ACF43A300793B7D /* fixtures_m.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C0F0B3E1ACF43A300793B7D /* fixtures_m.h */; };
16
+ 8C0F0B411ACF43A300793B7D /* fixtures_m.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C0F0B3F1ACF43A300793B7D /* fixtures_m.m */; };
17
+ 8C0F0B441ACF44E000793B7D /* fixtures_cpp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C0F0B421ACF44E000793B7D /* fixtures_cpp.cpp */; };
18
+ 8C0F0B451ACF44E000793B7D /* fixtures_cpp.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C0F0B431ACF44E000793B7D /* fixtures_cpp.h */; };
19
+ 8C0F0B481ACF44F200793B7D /* fixtures_mm.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C0F0B461ACF44F200793B7D /* fixtures_mm.h */; };
20
+ 8C0F0B491ACF44F200793B7D /* fixtures_mm.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C0F0B471ACF44F200793B7D /* fixtures_mm.mm */; };
21
+ 8C52AEF7195AAE32008A882A /* peekaview.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C52AEF5195AAE32008A882A /* peekaview.h */; };
22
+ 8C52AEF8195AAE33008A882A /* peekaview.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C52AEF6195AAE32008A882A /* peekaview.m */; };
23
+ 8C52AEFA195AAE70008A882A /* peekaviewTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C52AEF9195AAE70008A882A /* peekaviewTests.m */; };
24
+ 8C9A2031195965F10013B6B3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9A2030195965F10013B6B3 /* Cocoa.framework */; };
25
+ 8C9A203B195965F10013B6B3 /* fixtures.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C9A203A195965F10013B6B3 /* fixtures.m */; };
26
+ 8C9A2042195965F10013B6B3 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9A2041195965F10013B6B3 /* XCTest.framework */; };
27
+ 8C9A2043195965F10013B6B3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9A2030195965F10013B6B3 /* Cocoa.framework */; };
28
+ 8C9A2046195965F10013B6B3 /* libfixtures.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9A202D195965F10013B6B3 /* libfixtures.a */; };
29
+ 8C9A204C195965F10013B6B3 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8C9A204A195965F10013B6B3 /* InfoPlist.strings */; };
30
+ 8C9A204E195965F10013B6B3 /* fixturesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C9A204D195965F10013B6B3 /* fixturesTests.m */; };
31
+ /* End PBXBuildFile section */
32
+
33
+ /* Begin PBXContainerItemProxy section */
34
+ 8C9A2044195965F10013B6B3 /* PBXContainerItemProxy */ = {
35
+ isa = PBXContainerItemProxy;
36
+ containerPortal = 8C9A2025195965F00013B6B3 /* Project object */;
37
+ proxyType = 1;
38
+ remoteGlobalIDString = 8C9A202C195965F10013B6B3;
39
+ remoteInfo = fixtures;
40
+ };
41
+ /* End PBXContainerItemProxy section */
42
+
43
+ /* Begin PBXFileReference section */
44
+ 155BBCA319E9CB6700BACB13 /* Branches.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Branches.h; sourceTree = "<group>"; };
45
+ 155BBCA419E9CB6700BACB13 /* Branches.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Branches.m; sourceTree = "<group>"; };
46
+ 155BBCA719E9CCC500BACB13 /* BranchesTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BranchesTests.m; sourceTree = "<group>"; };
47
+ 155D8AFC19FED984004666BA /* Empty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Empty.h; sourceTree = "<group>"; };
48
+ 155D8AFD19FED984004666BA /* Empty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Empty.m; sourceTree = "<group>"; };
49
+ 8C0F0B3E1ACF43A300793B7D /* fixtures_m.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fixtures_m.h; sourceTree = "<group>"; };
50
+ 8C0F0B3F1ACF43A300793B7D /* fixtures_m.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = fixtures_m.m; sourceTree = "<group>"; };
51
+ 8C0F0B421ACF44E000793B7D /* fixtures_cpp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fixtures_cpp.cpp; sourceTree = "<group>"; };
52
+ 8C0F0B431ACF44E000793B7D /* fixtures_cpp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fixtures_cpp.h; sourceTree = "<group>"; };
53
+ 8C0F0B461ACF44F200793B7D /* fixtures_mm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fixtures_mm.h; sourceTree = "<group>"; };
54
+ 8C0F0B471ACF44F200793B7D /* fixtures_mm.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = fixtures_mm.mm; sourceTree = "<group>"; };
55
+ 8C52AEF5195AAE32008A882A /* peekaview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = peekaview.h; sourceTree = "<group>"; };
56
+ 8C52AEF6195AAE32008A882A /* peekaview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = peekaview.m; sourceTree = "<group>"; };
57
+ 8C52AEF9195AAE70008A882A /* peekaviewTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = peekaviewTests.m; sourceTree = "<group>"; };
58
+ 8C9A202D195965F10013B6B3 /* libfixtures.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libfixtures.a; sourceTree = BUILT_PRODUCTS_DIR; };
59
+ 8C9A2030195965F10013B6B3 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
60
+ 8C9A2033195965F10013B6B3 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
61
+ 8C9A2034195965F10013B6B3 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
62
+ 8C9A2035195965F10013B6B3 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
63
+ 8C9A2038195965F10013B6B3 /* fixtures-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "fixtures-Prefix.pch"; sourceTree = "<group>"; };
64
+ 8C9A2039195965F10013B6B3 /* fixtures.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fixtures.h; sourceTree = "<group>"; };
65
+ 8C9A203A195965F10013B6B3 /* fixtures.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = fixtures.m; sourceTree = "<group>"; };
66
+ 8C9A2040195965F10013B6B3 /* fixturesTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = fixturesTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
67
+ 8C9A2041195965F10013B6B3 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
68
+ 8C9A2049195965F10013B6B3 /* fixturesTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "fixturesTests-Info.plist"; sourceTree = "<group>"; };
69
+ 8C9A204B195965F10013B6B3 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
70
+ 8C9A204D195965F10013B6B3 /* fixturesTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = fixturesTests.m; sourceTree = "<group>"; };
71
+ /* End PBXFileReference section */
72
+
73
+ /* Begin PBXFrameworksBuildPhase section */
74
+ 8C9A202A195965F10013B6B3 /* Frameworks */ = {
75
+ isa = PBXFrameworksBuildPhase;
76
+ buildActionMask = 2147483647;
77
+ files = (
78
+ 8C9A2031195965F10013B6B3 /* Cocoa.framework in Frameworks */,
79
+ );
80
+ runOnlyForDeploymentPostprocessing = 0;
81
+ };
82
+ 8C9A203D195965F10013B6B3 /* Frameworks */ = {
83
+ isa = PBXFrameworksBuildPhase;
84
+ buildActionMask = 2147483647;
85
+ files = (
86
+ 8C9A2046195965F10013B6B3 /* libfixtures.a in Frameworks */,
87
+ 8C9A2043195965F10013B6B3 /* Cocoa.framework in Frameworks */,
88
+ 8C9A2042195965F10013B6B3 /* XCTest.framework in Frameworks */,
89
+ );
90
+ runOnlyForDeploymentPostprocessing = 0;
91
+ };
92
+ /* End PBXFrameworksBuildPhase section */
93
+
94
+ /* Begin PBXGroup section */
95
+ 8C52AEF4195AAE16008A882A /* more_files */ = {
96
+ isa = PBXGroup;
97
+ children = (
98
+ 8C52AEF5195AAE32008A882A /* peekaview.h */,
99
+ 8C52AEF6195AAE32008A882A /* peekaview.m */,
100
+ 155BBCA319E9CB6700BACB13 /* Branches.h */,
101
+ 155BBCA419E9CB6700BACB13 /* Branches.m */,
102
+ 155D8AFC19FED984004666BA /* Empty.h */,
103
+ 155D8AFD19FED984004666BA /* Empty.m */,
104
+ );
105
+ path = more_files;
106
+ sourceTree = "<group>";
107
+ };
108
+ 8C9A2024195965F00013B6B3 = {
109
+ isa = PBXGroup;
110
+ children = (
111
+ 8C9A2036195965F10013B6B3 /* fixtures */,
112
+ 8C9A2047195965F10013B6B3 /* fixturesTests */,
113
+ 8C9A202F195965F10013B6B3 /* Frameworks */,
114
+ 8C9A202E195965F10013B6B3 /* Products */,
115
+ );
116
+ sourceTree = "<group>";
117
+ };
118
+ 8C9A202E195965F10013B6B3 /* Products */ = {
119
+ isa = PBXGroup;
120
+ children = (
121
+ 8C9A202D195965F10013B6B3 /* libfixtures.a */,
122
+ 8C9A2040195965F10013B6B3 /* fixturesTests.xctest */,
123
+ );
124
+ name = Products;
125
+ sourceTree = "<group>";
126
+ };
127
+ 8C9A202F195965F10013B6B3 /* Frameworks */ = {
128
+ isa = PBXGroup;
129
+ children = (
130
+ 8C9A2030195965F10013B6B3 /* Cocoa.framework */,
131
+ 8C9A2041195965F10013B6B3 /* XCTest.framework */,
132
+ 8C9A2032195965F10013B6B3 /* Other Frameworks */,
133
+ );
134
+ name = Frameworks;
135
+ sourceTree = "<group>";
136
+ };
137
+ 8C9A2032195965F10013B6B3 /* Other Frameworks */ = {
138
+ isa = PBXGroup;
139
+ children = (
140
+ 8C9A2033195965F10013B6B3 /* Foundation.framework */,
141
+ 8C9A2034195965F10013B6B3 /* CoreData.framework */,
142
+ 8C9A2035195965F10013B6B3 /* AppKit.framework */,
143
+ );
144
+ name = "Other Frameworks";
145
+ sourceTree = "<group>";
146
+ };
147
+ 8C9A2036195965F10013B6B3 /* fixtures */ = {
148
+ isa = PBXGroup;
149
+ children = (
150
+ 8C52AEF4195AAE16008A882A /* more_files */,
151
+ 8C9A2039195965F10013B6B3 /* fixtures.h */,
152
+ 8C9A203A195965F10013B6B3 /* fixtures.m */,
153
+ 8C0F0B3E1ACF43A300793B7D /* fixtures_m.h */,
154
+ 8C0F0B3F1ACF43A300793B7D /* fixtures_m.m */,
155
+ 8C9A2037195965F10013B6B3 /* Supporting Files */,
156
+ 8C0F0B421ACF44E000793B7D /* fixtures_cpp.cpp */,
157
+ 8C0F0B431ACF44E000793B7D /* fixtures_cpp.h */,
158
+ 8C0F0B461ACF44F200793B7D /* fixtures_mm.h */,
159
+ 8C0F0B471ACF44F200793B7D /* fixtures_mm.mm */,
160
+ );
161
+ path = fixtures;
162
+ sourceTree = "<group>";
163
+ };
164
+ 8C9A2037195965F10013B6B3 /* Supporting Files */ = {
165
+ isa = PBXGroup;
166
+ children = (
167
+ 8C9A2038195965F10013B6B3 /* fixtures-Prefix.pch */,
168
+ );
169
+ path = "Supporting Files";
170
+ sourceTree = "<group>";
171
+ };
172
+ 8C9A2047195965F10013B6B3 /* fixturesTests */ = {
173
+ isa = PBXGroup;
174
+ children = (
175
+ 8C9A204D195965F10013B6B3 /* fixturesTests.m */,
176
+ 8C9A2048195965F10013B6B3 /* Supporting Files */,
177
+ 8C52AEF9195AAE70008A882A /* peekaviewTests.m */,
178
+ 155BBCA719E9CCC500BACB13 /* BranchesTests.m */,
179
+ );
180
+ path = fixturesTests;
181
+ sourceTree = "<group>";
182
+ };
183
+ 8C9A2048195965F10013B6B3 /* Supporting Files */ = {
184
+ isa = PBXGroup;
185
+ children = (
186
+ 8C9A2049195965F10013B6B3 /* fixturesTests-Info.plist */,
187
+ 8C9A204A195965F10013B6B3 /* InfoPlist.strings */,
188
+ );
189
+ path = "Supporting Files";
190
+ sourceTree = "<group>";
191
+ };
192
+ /* End PBXGroup section */
193
+
194
+ /* Begin PBXHeadersBuildPhase section */
195
+ 8C9A202B195965F10013B6B3 /* Headers */ = {
196
+ isa = PBXHeadersBuildPhase;
197
+ buildActionMask = 2147483647;
198
+ files = (
199
+ 8C0F0B481ACF44F200793B7D /* fixtures_mm.h in Headers */,
200
+ 8C0F0B401ACF43A300793B7D /* fixtures_m.h in Headers */,
201
+ 155D8AFE19FED984004666BA /* Empty.h in Headers */,
202
+ 155BBCA519E9CB6700BACB13 /* Branches.h in Headers */,
203
+ 8C0F0B451ACF44E000793B7D /* fixtures_cpp.h in Headers */,
204
+ 8C52AEF7195AAE32008A882A /* peekaview.h in Headers */,
205
+ );
206
+ runOnlyForDeploymentPostprocessing = 0;
207
+ };
208
+ /* End PBXHeadersBuildPhase section */
209
+
210
+ /* Begin PBXNativeTarget section */
211
+ 8C9A202C195965F10013B6B3 /* fixtures */ = {
212
+ isa = PBXNativeTarget;
213
+ buildConfigurationList = 8C9A2051195965F10013B6B3 /* Build configuration list for PBXNativeTarget "fixtures" */;
214
+ buildPhases = (
215
+ 8C9A2029195965F10013B6B3 /* Sources */,
216
+ 8C9A202A195965F10013B6B3 /* Frameworks */,
217
+ 8C9A202B195965F10013B6B3 /* Headers */,
218
+ );
219
+ buildRules = (
220
+ );
221
+ dependencies = (
222
+ );
223
+ name = fixtures;
224
+ productName = fixtures;
225
+ productReference = 8C9A202D195965F10013B6B3 /* libfixtures.a */;
226
+ productType = "com.apple.product-type.library.static";
227
+ };
228
+ 8C9A203F195965F10013B6B3 /* fixturesTests */ = {
229
+ isa = PBXNativeTarget;
230
+ buildConfigurationList = 8C9A2054195965F10013B6B3 /* Build configuration list for PBXNativeTarget "fixturesTests" */;
231
+ buildPhases = (
232
+ 8C9A203C195965F10013B6B3 /* Sources */,
233
+ 8C9A203D195965F10013B6B3 /* Frameworks */,
234
+ 8C9A203E195965F10013B6B3 /* Resources */,
235
+ );
236
+ buildRules = (
237
+ );
238
+ dependencies = (
239
+ 8C9A2045195965F10013B6B3 /* PBXTargetDependency */,
240
+ );
241
+ name = fixturesTests;
242
+ productName = fixturesTests;
243
+ productReference = 8C9A2040195965F10013B6B3 /* fixturesTests.xctest */;
244
+ productType = "com.apple.product-type.bundle.unit-test";
245
+ };
246
+ /* End PBXNativeTarget section */
247
+
248
+ /* Begin PBXProject section */
249
+ 8C9A2025195965F00013B6B3 /* Project object */ = {
250
+ isa = PBXProject;
251
+ attributes = {
252
+ LastUpgradeCheck = 0510;
253
+ ORGANIZATIONNAME = marklarr;
254
+ };
255
+ buildConfigurationList = 8C9A2028195965F00013B6B3 /* Build configuration list for PBXProject "fixtures" */;
256
+ compatibilityVersion = "Xcode 3.2";
257
+ developmentRegion = English;
258
+ hasScannedForEncodings = 0;
259
+ knownRegions = (
260
+ en,
261
+ );
262
+ mainGroup = 8C9A2024195965F00013B6B3;
263
+ productRefGroup = 8C9A202E195965F10013B6B3 /* Products */;
264
+ projectDirPath = "";
265
+ projectRoot = "";
266
+ targets = (
267
+ 8C9A202C195965F10013B6B3 /* fixtures */,
268
+ 8C9A203F195965F10013B6B3 /* fixturesTests */,
269
+ );
270
+ };
271
+ /* End PBXProject section */
272
+
273
+ /* Begin PBXResourcesBuildPhase section */
274
+ 8C9A203E195965F10013B6B3 /* Resources */ = {
275
+ isa = PBXResourcesBuildPhase;
276
+ buildActionMask = 2147483647;
277
+ files = (
278
+ 8C9A204C195965F10013B6B3 /* InfoPlist.strings in Resources */,
279
+ );
280
+ runOnlyForDeploymentPostprocessing = 0;
281
+ };
282
+ /* End PBXResourcesBuildPhase section */
283
+
284
+ /* Begin PBXSourcesBuildPhase section */
285
+ 8C9A2029195965F10013B6B3 /* Sources */ = {
286
+ isa = PBXSourcesBuildPhase;
287
+ buildActionMask = 2147483647;
288
+ files = (
289
+ 8C9A203B195965F10013B6B3 /* fixtures.m in Sources */,
290
+ 155D8AFF19FED984004666BA /* Empty.m in Sources */,
291
+ 8C0F0B411ACF43A300793B7D /* fixtures_m.m in Sources */,
292
+ 8C0F0B441ACF44E000793B7D /* fixtures_cpp.cpp in Sources */,
293
+ 155BBCA619E9CB6700BACB13 /* Branches.m in Sources */,
294
+ 8C0F0B491ACF44F200793B7D /* fixtures_mm.mm in Sources */,
295
+ 8C52AEF8195AAE33008A882A /* peekaview.m in Sources */,
296
+ );
297
+ runOnlyForDeploymentPostprocessing = 0;
298
+ };
299
+ 8C9A203C195965F10013B6B3 /* Sources */ = {
300
+ isa = PBXSourcesBuildPhase;
301
+ buildActionMask = 2147483647;
302
+ files = (
303
+ 8C9A204E195965F10013B6B3 /* fixturesTests.m in Sources */,
304
+ 8C52AEFA195AAE70008A882A /* peekaviewTests.m in Sources */,
305
+ 155BBCA819E9CCC500BACB13 /* BranchesTests.m in Sources */,
306
+ );
307
+ runOnlyForDeploymentPostprocessing = 0;
308
+ };
309
+ /* End PBXSourcesBuildPhase section */
310
+
311
+ /* Begin PBXTargetDependency section */
312
+ 8C9A2045195965F10013B6B3 /* PBXTargetDependency */ = {
313
+ isa = PBXTargetDependency;
314
+ target = 8C9A202C195965F10013B6B3 /* fixtures */;
315
+ targetProxy = 8C9A2044195965F10013B6B3 /* PBXContainerItemProxy */;
316
+ };
317
+ /* End PBXTargetDependency section */
318
+
319
+ /* Begin PBXVariantGroup section */
320
+ 8C9A204A195965F10013B6B3 /* InfoPlist.strings */ = {
321
+ isa = PBXVariantGroup;
322
+ children = (
323
+ 8C9A204B195965F10013B6B3 /* en */,
324
+ );
325
+ name = InfoPlist.strings;
326
+ sourceTree = "<group>";
327
+ };
328
+ /* End PBXVariantGroup section */
329
+
330
+ /* Begin XCBuildConfiguration section */
331
+ 8C9A204F195965F10013B6B3 /* Debug */ = {
332
+ isa = XCBuildConfiguration;
333
+ buildSettings = {
334
+ ALWAYS_SEARCH_USER_PATHS = NO;
335
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
336
+ CLANG_CXX_LIBRARY = "libc++";
337
+ CLANG_ENABLE_MODULES = YES;
338
+ CLANG_ENABLE_OBJC_ARC = YES;
339
+ CLANG_WARN_BOOL_CONVERSION = YES;
340
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
341
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
342
+ CLANG_WARN_EMPTY_BODY = YES;
343
+ CLANG_WARN_ENUM_CONVERSION = YES;
344
+ CLANG_WARN_INT_CONVERSION = YES;
345
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
346
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
347
+ COPY_PHASE_STRIP = NO;
348
+ GCC_C_LANGUAGE_STANDARD = gnu99;
349
+ GCC_DYNAMIC_NO_PIC = NO;
350
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
351
+ GCC_GENERATE_TEST_COVERAGE_FILES = YES;
352
+ GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
353
+ GCC_OPTIMIZATION_LEVEL = 0;
354
+ GCC_PREPROCESSOR_DEFINITIONS = (
355
+ "DEBUG=1",
356
+ "$(inherited)",
357
+ );
358
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
359
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
360
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
361
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
362
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
363
+ GCC_WARN_UNUSED_FUNCTION = YES;
364
+ GCC_WARN_UNUSED_VARIABLE = YES;
365
+ MACOSX_DEPLOYMENT_TARGET = 10.9;
366
+ ONLY_ACTIVE_ARCH = YES;
367
+ SDKROOT = macosx;
368
+ };
369
+ name = Debug;
370
+ };
371
+ 8C9A2050195965F10013B6B3 /* Release */ = {
372
+ isa = XCBuildConfiguration;
373
+ buildSettings = {
374
+ ALWAYS_SEARCH_USER_PATHS = NO;
375
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
376
+ CLANG_CXX_LIBRARY = "libc++";
377
+ CLANG_ENABLE_MODULES = YES;
378
+ CLANG_ENABLE_OBJC_ARC = YES;
379
+ CLANG_WARN_BOOL_CONVERSION = YES;
380
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
381
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
382
+ CLANG_WARN_EMPTY_BODY = YES;
383
+ CLANG_WARN_ENUM_CONVERSION = YES;
384
+ CLANG_WARN_INT_CONVERSION = YES;
385
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
386
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
387
+ COPY_PHASE_STRIP = YES;
388
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
389
+ ENABLE_NS_ASSERTIONS = NO;
390
+ GCC_C_LANGUAGE_STANDARD = gnu99;
391
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
392
+ GCC_GENERATE_TEST_COVERAGE_FILES = YES;
393
+ GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
394
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
395
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
396
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
397
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
398
+ GCC_WARN_UNUSED_FUNCTION = YES;
399
+ GCC_WARN_UNUSED_VARIABLE = YES;
400
+ MACOSX_DEPLOYMENT_TARGET = 10.9;
401
+ SDKROOT = macosx;
402
+ };
403
+ name = Release;
404
+ };
405
+ 8C9A2052195965F10013B6B3 /* Debug */ = {
406
+ isa = XCBuildConfiguration;
407
+ buildSettings = {
408
+ GCC_GENERATE_TEST_COVERAGE_FILES = YES;
409
+ GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
410
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
411
+ GCC_PREFIX_HEADER = "fixtures/Supporting Files/fixtures-Prefix.pch";
412
+ PRODUCT_NAME = "$(TARGET_NAME)";
413
+ };
414
+ name = Debug;
415
+ };
416
+ 8C9A2053195965F10013B6B3 /* Release */ = {
417
+ isa = XCBuildConfiguration;
418
+ buildSettings = {
419
+ GCC_GENERATE_TEST_COVERAGE_FILES = YES;
420
+ GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
421
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
422
+ GCC_PREFIX_HEADER = "fixtures/Supporting Files/fixtures-Prefix.pch";
423
+ PRODUCT_NAME = "$(TARGET_NAME)";
424
+ };
425
+ name = Release;
426
+ };
427
+ 8C9A2055195965F10013B6B3 /* Debug */ = {
428
+ isa = XCBuildConfiguration;
429
+ buildSettings = {
430
+ COMBINE_HIDPI_IMAGES = YES;
431
+ FRAMEWORK_SEARCH_PATHS = (
432
+ "$(DEVELOPER_FRAMEWORKS_DIR)",
433
+ "$(inherited)",
434
+ );
435
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
436
+ GCC_PREFIX_HEADER = "fixtures/Supporting Files/fixtures-Prefix.pch";
437
+ GCC_PREPROCESSOR_DEFINITIONS = (
438
+ "DEBUG=1",
439
+ "$(inherited)",
440
+ );
441
+ INFOPLIST_FILE = "fixturesTests/Supporting Files/fixturesTests-Info.plist";
442
+ PRODUCT_NAME = "$(TARGET_NAME)";
443
+ WRAPPER_EXTENSION = xctest;
444
+ };
445
+ name = Debug;
446
+ };
447
+ 8C9A2056195965F10013B6B3 /* Release */ = {
448
+ isa = XCBuildConfiguration;
449
+ buildSettings = {
450
+ COMBINE_HIDPI_IMAGES = YES;
451
+ FRAMEWORK_SEARCH_PATHS = (
452
+ "$(DEVELOPER_FRAMEWORKS_DIR)",
453
+ "$(inherited)",
454
+ );
455
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
456
+ GCC_PREFIX_HEADER = "fixtures/Supporting Files/fixtures-Prefix.pch";
457
+ INFOPLIST_FILE = "fixturesTests/Supporting Files/fixturesTests-Info.plist";
458
+ PRODUCT_NAME = "$(TARGET_NAME)";
459
+ WRAPPER_EXTENSION = xctest;
460
+ };
461
+ name = Release;
462
+ };
463
+ /* End XCBuildConfiguration section */
464
+
465
+ /* Begin XCConfigurationList section */
466
+ 8C9A2028195965F00013B6B3 /* Build configuration list for PBXProject "fixtures" */ = {
467
+ isa = XCConfigurationList;
468
+ buildConfigurations = (
469
+ 8C9A204F195965F10013B6B3 /* Debug */,
470
+ 8C9A2050195965F10013B6B3 /* Release */,
471
+ );
472
+ defaultConfigurationIsVisible = 0;
473
+ defaultConfigurationName = Release;
474
+ };
475
+ 8C9A2051195965F10013B6B3 /* Build configuration list for PBXNativeTarget "fixtures" */ = {
476
+ isa = XCConfigurationList;
477
+ buildConfigurations = (
478
+ 8C9A2052195965F10013B6B3 /* Debug */,
479
+ 8C9A2053195965F10013B6B3 /* Release */,
480
+ );
481
+ defaultConfigurationIsVisible = 0;
482
+ defaultConfigurationName = Release;
483
+ };
484
+ 8C9A2054195965F10013B6B3 /* Build configuration list for PBXNativeTarget "fixturesTests" */ = {
485
+ isa = XCConfigurationList;
486
+ buildConfigurations = (
487
+ 8C9A2055195965F10013B6B3 /* Debug */,
488
+ 8C9A2056195965F10013B6B3 /* Release */,
489
+ );
490
+ defaultConfigurationIsVisible = 0;
491
+ defaultConfigurationName = Release;
492
+ };
493
+ /* End XCConfigurationList section */
494
+ };
495
+ rootObject = 8C9A2025195965F00013B6B3 /* Project object */;
496
+ }