slather 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- Mzk5NGNiYzA1NGVhMzEzYWJhMzdhNjA0YjBhNjhhYWY2ZmQ3NDNlZQ==
4
+ ZTQzZDA5ZDdiZGE5ODkwZDYyMDg5NjQ1NjQ5ODI1NDI2OGRmZDJjOA==
5
5
  data.tar.gz: !binary |-
6
- YTY0ZjBiNDcwZGFlMmM5YzQyNjU0YjdkYjQyNDcyYThhMDAyYzM3Zg==
6
+ NGRhN2I1Yjk5ZDgzZTgxYWIwNWI1MjQyNjhjNTE3OGYwZjdjMjQyNg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YmNkNjVhOGYxNWM4NzFjMTBiYTY3NGMwZjM2Y2Y5NDU5MDMzNjEwYWQyYjJj
10
- MjcwNDkxNTEzNmQwNGE5NjVhODI4NTM5OTA5OTRlYjEwMTc2YWYxMWMzMGM1
11
- ZDEwODRiMjdjYmZjNTUxZjZlMDJmMTJjNDQyZWU1YmM3OGEyNzE=
9
+ NTE3MWUwOGE0MGQxZGQ4M2VmOTA1YjRhZTY1NDVhMzE5YzE2OGRiYzFhZTZi
10
+ ZjYwZDVhODZmNTVkYWE4ZjUwZmZmOWI5ZjEzOWEwYmRkMDI5NTNiNzUyYjU1
11
+ MWQzYzAyNTM1ZmU1MWYzZmM5YzE0NzQzNDI1ZDM5OGUyMDI1YWI=
12
12
  data.tar.gz: !binary |-
13
- M2E4N2ZmNzZkYTViMjAzYzA0N2MyZDQxMmI0NjQyOGY0YjExNjhkYTIwYjky
14
- N2Y3M2IzZGE3NmU0NmUwZWRiZDhiNzUwZjhlYjc3NWNlOGYyOGFmMGFlYmI1
15
- YWE3ODA0NDA0NGI2YWZhNGI1MzdlNmU0NTc1NWUwYzJlN2I5NjA=
13
+ ZmFjMTcxZjBkN2ZiMzk5OWMxNWY2OGJkZTZhZmIwZTY5ZGNmMDVhNDIzNzI5
14
+ ODc3NjcxOTdkZWE5ODc1NDcxNzcxNWExNTNiYTY2NTc1ODIyNjE5MTI0YWNi
15
+ MzM4YzgyODM0OTc5YjgzMjM0MDQzNDllNjdhMTkxYzQxNWQ4ZmI=
data/.travis.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  language: objective-c
2
- script: scripts/travis.sh
2
+ script: bundle exec rake
3
3
 
4
4
  # Sets Travis to run the Ruby specs on OS X machines which are required to
5
5
  # build the native extensions of Xcodeproj.
@@ -17,4 +17,4 @@ before_install:
17
17
  - if [[ $RVM_RUBY_VERSION == 'system' ]]; then sudo gem install bundler --no-ri --no-rdoc; else gem install bundler --no-ri --no-rdoc; fi
18
18
 
19
19
  install:
20
- - bundle install --without=documentation --path ./travis_bundle_dir
20
+ - bundle install --without=documentation --path ./travis_bundle_dir
data/README.md CHANGED
@@ -12,30 +12,39 @@ Generate test coverage reports for Xcode projects & hook it into CI.
12
12
  | Project | Coverage |
13
13
  | ------- |:--------:|
14
14
  | [Parsimmon](https://github.com/ayanonagon/Parsimmon) | [![Parsimmon Coverage](https://coveralls.io/repos/ayanonagon/Parsimmon/badge.png?branch=master)](https://coveralls.io/r/ayanonagon/Parsimmon?branch=master) |
15
- | [VENCore](https://github.com/venmo/VENCore) | [![VENCore Coverage](https://coveralls.io/repos/venmo/VENCore/badge.png?branch=marklarr%2Fslather)](https://coveralls.io/r/venmo/VENCore?branch=marklarr%2Fslather) |
15
+ | [VENCore](https://github.com/venmo/VENCore) | [![VENCore Coverage](https://coveralls.io/repos/venmo/VENCore/badge.png?branch=master)](https://coveralls.io/r/venmo/VENCore?branch=master) |
16
+ | [CGFloatType](https://github.com/kylef/CGFloatType) | [![CGFloatType Coverage](https://coveralls.io/repos/kylef/CGFloatType/badge.png?branch=master)](https://coveralls.io/r/kylef/CGFloatType?branch=master) |
16
17
 
17
18
  ## Installation
18
19
 
19
20
  Add this line to your application's Gemfile:
20
21
 
21
- gem 'slather'
22
+ ```ruby
23
+ gem 'slather'
24
+ ```
22
25
 
23
26
  And then execute:
24
27
 
25
- $ bundle
28
+ ```sh
29
+ $ bundle
30
+ ```
26
31
 
27
32
  ## Usage
28
33
 
29
34
  Setup your project for test coverage:
30
35
 
31
- $ slather setup path/to/project.xcodeproj
36
+ ```sh
37
+ $ slather setup path/to/project.xcodeproj
38
+ ```
32
39
 
33
40
  This will enable the `Generate Test Coverage` and `Instrument Program Flow` flags for your project.
34
41
 
35
42
 
36
43
  To test if you're ready to generate test coverage, run your test suite on your project, and then run:
37
44
 
38
- $ slather coverage -s path/to/project.xcodeproj
45
+ ```sh
46
+ $ slather coverage -s path/to/project.xcodeproj
47
+ ```
39
48
 
40
49
  ### Coveralls
41
50
 
@@ -63,6 +72,29 @@ install: bundle install --without=documentation --path ../travis_bundle_dir
63
72
  after_success: slather
64
73
  ```
65
74
 
75
+ ### Coverage for code included via CocoaPods
76
+
77
+ If you're trying to compute the coverage of code that has been included via CocoaPods, you can add the following to your Podfile:
78
+
79
+ ```ruby
80
+ # Podfile
81
+
82
+ begin
83
+ require 'slather'
84
+ Slather.prepare_pods(self)
85
+ rescue LoadError
86
+ puts 'Slather has been disabled (not installed).'
87
+ end
88
+ ```
89
+
90
+ Then, tell slather where to find the source files for your Pod.
91
+
92
+ ```yml
93
+ # .slather.yml
94
+
95
+ source_directory: Pods/AFNetworking
96
+ ```
97
+
66
98
  ### Custom Build Directory
67
99
 
68
100
  Slather will look for the test coverage files in `DerivedData` by default. If you send build output to a custom location, like [this](https://github.com/erikdoe/ocmock/blob/master/Tools/travis.sh#L12), then you should also set the `build_directory` property in `.slather.yml`
data/Rakefile CHANGED
@@ -1,2 +1,14 @@
1
1
  require "bundler/gem_tasks"
2
2
 
3
+ desc "Generate the test fixtures"
4
+ task :generate_fixtures do
5
+ sh "xcodebuild -project spec/fixtures/fixtures.xcodeproj/ -scheme fixtures -configuration Debug test"
6
+ end
7
+
8
+ desc "Run all the specs"
9
+ task :specs do
10
+ sh "rspec"
11
+ end
12
+
13
+ task :default => [:generate_fixtures, :specs]
14
+
@@ -51,6 +51,14 @@ module Slather
51
51
  end
52
52
  end
53
53
 
54
+ def coverage_data
55
+ first_line_start = gcov_data =~ /^\s+(-|#+|[0-9+]):\s+1:/
56
+
57
+ gcov_data[first_line_start..-1].split("\n").map do |line|
58
+ coverage_for_line(line)
59
+ end
60
+ end
61
+
54
62
  def coverage_for_line(line)
55
63
  line =~ /^(.+?):/
56
64
 
@@ -65,6 +73,18 @@ module Slather
65
73
  end
66
74
  end
67
75
 
76
+ def num_lines_tested
77
+ coverage_data.compact.select { |cd| cd > 0 }.count
78
+ end
79
+
80
+ def num_lines_testable
81
+ coverage_data.compact.count
82
+ end
83
+
84
+ def percentage_lines_tested
85
+ (num_lines_tested / num_lines_testable.to_f) * 100.0
86
+ end
87
+
68
88
  def ignored?
69
89
  project.ignore_list.any? do |ignore|
70
90
  File.fnmatch(ignore, source_file_pathname_relative_to_repo_root)
@@ -72,4 +92,4 @@ module Slather
72
92
  end
73
93
 
74
94
  end
75
- end
95
+ end
@@ -13,13 +13,22 @@ module Slather
13
13
  private :travis_job_id
14
14
 
15
15
  def coveralls_coverage_data
16
- if ci_service == :travis_ci
16
+ if ci_service == :travis_ci || ci_service == :travis_pro
17
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
18
+ if ci_service == :travis_ci
19
+ {
20
+ :service_job_id => travis_job_id,
21
+ :service_name => "travis-ci",
22
+ :source_files => coverage_files.map(&:as_json)
23
+ }.to_json
24
+ elsif ci_service == :travis_pro
25
+ {
26
+ :service_job_id => travis_job_id,
27
+ :service_name => "travis-pro",
28
+ :repo_token => ci_access_token,
29
+ :source_files => coverage_files.map(&:as_json)
30
+ }.to_json
31
+ end
23
32
  else
24
33
  raise StandardError, "Environment variable `TRAVIS_JOB_ID` not set. Is this running on a travis build?"
25
34
  end
@@ -3,7 +3,7 @@ module Slather
3
3
  module SimpleOutput
4
4
 
5
5
  def coverage_file_class
6
- Slather::CoverallsCoverageFile
6
+ Slather::CoverageFile
7
7
  end
8
8
  private :coverage_file_class
9
9
 
@@ -12,11 +12,10 @@ module Slather
12
12
  total_project_lines_tested = 0
13
13
  coverage_files.each do |coverage_file|
14
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
15
 
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]
16
+ lines_tested = coverage_file.num_lines_tested
17
+ total_lines = coverage_file.num_lines_testable
18
+ percentage = '%.2f' % [coverage_file.percentage_lines_tested]
20
19
 
21
20
  total_project_lines_tested += lines_tested
22
21
  total_project_lines += total_lines
@@ -29,4 +28,4 @@ module Slather
29
28
 
30
29
  end
31
30
  end
32
- end
31
+ end
@@ -1,14 +1,6 @@
1
1
  module Slather
2
2
  class CoverallsCoverageFile < CoverageFile
3
3
 
4
- def coverage_data
5
- first_line_start = gcov_data =~ /^\s+(-|#+|[0-9+]):\s+1:/
6
-
7
- gcov_data[first_line_start..-1].split("\n").map do |line|
8
- coverage_for_line(line)
9
- end
10
- end
11
-
12
4
  def as_json
13
5
  {
14
6
  :name => source_file_pathname_relative_to_repo_root.to_s,
@@ -18,4 +10,4 @@ module Slather
18
10
  end
19
11
 
20
12
  end
21
- end
13
+ end
@@ -19,7 +19,7 @@ end
19
19
  module Slather
20
20
  class Project < Xcodeproj::Project
21
21
 
22
- attr_accessor :build_directory, :ignore_list, :ci_service, :coverage_service, :source_directory
22
+ attr_accessor :build_directory, :ignore_list, :ci_service, :coverage_service, :ci_access_token, :source_directory
23
23
 
24
24
  alias_method :setup_for_coverage, :slather_setup_for_coverage
25
25
 
@@ -48,11 +48,16 @@ module Slather
48
48
  if coverage_files.empty?
49
49
  raise StandardError, "No coverage files found. Are you sure your project is setup for generating coverage files? Try `slather setup your/project.pbxproj`"
50
50
  else
51
- coverage_files
51
+ dedupe(coverage_files)
52
52
  end
53
53
  end
54
54
  private :coverage_files
55
55
 
56
+ def dedupe(coverage_files)
57
+ coverage_files.group_by(&:source_file_pathname).values.map { |cf_array| cf_array.max_by(&:percentage_lines_tested) }
58
+ end
59
+ private :dedupe
60
+
56
61
  def self.yml_filename
57
62
  '.slather.yml'
58
63
  end
@@ -65,6 +70,7 @@ module Slather
65
70
  configure_build_directory_from_yml
66
71
  configure_ignore_list_from_yml
67
72
  configure_ci_service_from_yml
73
+ configure_ci_access_token_from_yml
68
74
  configure_coverage_service_from_yml
69
75
  configure_source_directory_from_yml
70
76
  end
@@ -93,6 +99,10 @@ module Slather
93
99
  self.coverage_service ||= (self.class.yml["coverage_service"] || :terminal)
94
100
  end
95
101
 
102
+ def configure_ci_access_token_from_yml
103
+ self.ci_access_token ||= (self.class.yml["ci_access_token"] || "")
104
+ end
105
+
96
106
  def coverage_service=(service)
97
107
  service = service && service.to_sym
98
108
  if service == :coveralls
@@ -1,3 +1,3 @@
1
1
  module Slather
2
- VERSION = "1.1.0"
2
+ VERSION = "1.2.0"
3
3
  end
@@ -1,452 +1,905 @@
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
- }
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>archiveVersion</key>
6
+ <string>1</string>
7
+ <key>classes</key>
8
+ <dict/>
9
+ <key>objectVersion</key>
10
+ <string>46</string>
11
+ <key>objects</key>
12
+ <dict>
13
+ <key>8C52AEF4195AAE16008A882A</key>
14
+ <dict>
15
+ <key>children</key>
16
+ <array>
17
+ <string>8C52AEF5195AAE32008A882A</string>
18
+ <string>8C52AEF6195AAE32008A882A</string>
19
+ </array>
20
+ <key>isa</key>
21
+ <string>PBXGroup</string>
22
+ <key>path</key>
23
+ <string>more_files</string>
24
+ <key>sourceTree</key>
25
+ <string>&lt;group&gt;</string>
26
+ </dict>
27
+ <key>8C52AEF5195AAE32008A882A</key>
28
+ <dict>
29
+ <key>fileEncoding</key>
30
+ <string>4</string>
31
+ <key>isa</key>
32
+ <string>PBXFileReference</string>
33
+ <key>lastKnownFileType</key>
34
+ <string>sourcecode.c.h</string>
35
+ <key>path</key>
36
+ <string>peekaview.h</string>
37
+ <key>sourceTree</key>
38
+ <string>&lt;group&gt;</string>
39
+ </dict>
40
+ <key>8C52AEF6195AAE32008A882A</key>
41
+ <dict>
42
+ <key>fileEncoding</key>
43
+ <string>4</string>
44
+ <key>isa</key>
45
+ <string>PBXFileReference</string>
46
+ <key>lastKnownFileType</key>
47
+ <string>sourcecode.c.objc</string>
48
+ <key>path</key>
49
+ <string>peekaview.m</string>
50
+ <key>sourceTree</key>
51
+ <string>&lt;group&gt;</string>
52
+ </dict>
53
+ <key>8C52AEF7195AAE32008A882A</key>
54
+ <dict>
55
+ <key>fileRef</key>
56
+ <string>8C52AEF5195AAE32008A882A</string>
57
+ <key>isa</key>
58
+ <string>PBXBuildFile</string>
59
+ </dict>
60
+ <key>8C52AEF8195AAE33008A882A</key>
61
+ <dict>
62
+ <key>fileRef</key>
63
+ <string>8C52AEF6195AAE32008A882A</string>
64
+ <key>isa</key>
65
+ <string>PBXBuildFile</string>
66
+ </dict>
67
+ <key>8C52AEF9195AAE70008A882A</key>
68
+ <dict>
69
+ <key>fileEncoding</key>
70
+ <string>4</string>
71
+ <key>isa</key>
72
+ <string>PBXFileReference</string>
73
+ <key>lastKnownFileType</key>
74
+ <string>sourcecode.c.objc</string>
75
+ <key>path</key>
76
+ <string>peekaviewTests.m</string>
77
+ <key>sourceTree</key>
78
+ <string>&lt;group&gt;</string>
79
+ </dict>
80
+ <key>8C52AEFA195AAE70008A882A</key>
81
+ <dict>
82
+ <key>fileRef</key>
83
+ <string>8C52AEF9195AAE70008A882A</string>
84
+ <key>isa</key>
85
+ <string>PBXBuildFile</string>
86
+ </dict>
87
+ <key>8C9A2024195965F00013B6B3</key>
88
+ <dict>
89
+ <key>children</key>
90
+ <array>
91
+ <string>8C9A2036195965F10013B6B3</string>
92
+ <string>8C9A2047195965F10013B6B3</string>
93
+ <string>8C9A202F195965F10013B6B3</string>
94
+ <string>8C9A202E195965F10013B6B3</string>
95
+ </array>
96
+ <key>isa</key>
97
+ <string>PBXGroup</string>
98
+ <key>sourceTree</key>
99
+ <string>&lt;group&gt;</string>
100
+ </dict>
101
+ <key>8C9A2025195965F00013B6B3</key>
102
+ <dict>
103
+ <key>attributes</key>
104
+ <dict>
105
+ <key>LastUpgradeCheck</key>
106
+ <string>0510</string>
107
+ <key>ORGANIZATIONNAME</key>
108
+ <string>marklarr</string>
109
+ </dict>
110
+ <key>buildConfigurationList</key>
111
+ <string>8C9A2028195965F00013B6B3</string>
112
+ <key>compatibilityVersion</key>
113
+ <string>Xcode 3.2</string>
114
+ <key>developmentRegion</key>
115
+ <string>English</string>
116
+ <key>hasScannedForEncodings</key>
117
+ <string>0</string>
118
+ <key>isa</key>
119
+ <string>PBXProject</string>
120
+ <key>knownRegions</key>
121
+ <array>
122
+ <string>en</string>
123
+ </array>
124
+ <key>mainGroup</key>
125
+ <string>8C9A2024195965F00013B6B3</string>
126
+ <key>productRefGroup</key>
127
+ <string>8C9A202E195965F10013B6B3</string>
128
+ <key>projectDirPath</key>
129
+ <string></string>
130
+ <key>projectReferences</key>
131
+ <array/>
132
+ <key>projectRoot</key>
133
+ <string></string>
134
+ <key>targets</key>
135
+ <array>
136
+ <string>8C9A202C195965F10013B6B3</string>
137
+ <string>8C9A203F195965F10013B6B3</string>
138
+ </array>
139
+ </dict>
140
+ <key>8C9A2028195965F00013B6B3</key>
141
+ <dict>
142
+ <key>buildConfigurations</key>
143
+ <array>
144
+ <string>8C9A204F195965F10013B6B3</string>
145
+ <string>8C9A2050195965F10013B6B3</string>
146
+ </array>
147
+ <key>defaultConfigurationIsVisible</key>
148
+ <string>0</string>
149
+ <key>defaultConfigurationName</key>
150
+ <string>Release</string>
151
+ <key>isa</key>
152
+ <string>XCConfigurationList</string>
153
+ </dict>
154
+ <key>8C9A2029195965F10013B6B3</key>
155
+ <dict>
156
+ <key>buildActionMask</key>
157
+ <string>2147483647</string>
158
+ <key>files</key>
159
+ <array>
160
+ <string>8C9A203B195965F10013B6B3</string>
161
+ <string>8C52AEF8195AAE33008A882A</string>
162
+ </array>
163
+ <key>isa</key>
164
+ <string>PBXSourcesBuildPhase</string>
165
+ <key>runOnlyForDeploymentPostprocessing</key>
166
+ <string>0</string>
167
+ </dict>
168
+ <key>8C9A202A195965F10013B6B3</key>
169
+ <dict>
170
+ <key>buildActionMask</key>
171
+ <string>2147483647</string>
172
+ <key>files</key>
173
+ <array>
174
+ <string>8C9A2031195965F10013B6B3</string>
175
+ </array>
176
+ <key>isa</key>
177
+ <string>PBXFrameworksBuildPhase</string>
178
+ <key>runOnlyForDeploymentPostprocessing</key>
179
+ <string>0</string>
180
+ </dict>
181
+ <key>8C9A202B195965F10013B6B3</key>
182
+ <dict>
183
+ <key>buildActionMask</key>
184
+ <string>2147483647</string>
185
+ <key>files</key>
186
+ <array>
187
+ <string>8C52AEF7195AAE32008A882A</string>
188
+ </array>
189
+ <key>isa</key>
190
+ <string>PBXHeadersBuildPhase</string>
191
+ <key>runOnlyForDeploymentPostprocessing</key>
192
+ <string>0</string>
193
+ </dict>
194
+ <key>8C9A202C195965F10013B6B3</key>
195
+ <dict>
196
+ <key>buildConfigurationList</key>
197
+ <string>8C9A2051195965F10013B6B3</string>
198
+ <key>buildPhases</key>
199
+ <array>
200
+ <string>8C9A2029195965F10013B6B3</string>
201
+ <string>8C9A202A195965F10013B6B3</string>
202
+ <string>8C9A202B195965F10013B6B3</string>
203
+ </array>
204
+ <key>buildRules</key>
205
+ <array/>
206
+ <key>dependencies</key>
207
+ <array/>
208
+ <key>isa</key>
209
+ <string>PBXNativeTarget</string>
210
+ <key>name</key>
211
+ <string>fixtures</string>
212
+ <key>productName</key>
213
+ <string>fixtures</string>
214
+ <key>productReference</key>
215
+ <string>8C9A202D195965F10013B6B3</string>
216
+ <key>productType</key>
217
+ <string>com.apple.product-type.library.static</string>
218
+ </dict>
219
+ <key>8C9A202D195965F10013B6B3</key>
220
+ <dict>
221
+ <key>explicitFileType</key>
222
+ <string>archive.ar</string>
223
+ <key>includeInIndex</key>
224
+ <string>0</string>
225
+ <key>isa</key>
226
+ <string>PBXFileReference</string>
227
+ <key>path</key>
228
+ <string>libfixtures.a</string>
229
+ <key>sourceTree</key>
230
+ <string>BUILT_PRODUCTS_DIR</string>
231
+ </dict>
232
+ <key>8C9A202E195965F10013B6B3</key>
233
+ <dict>
234
+ <key>children</key>
235
+ <array>
236
+ <string>8C9A202D195965F10013B6B3</string>
237
+ <string>8C9A2040195965F10013B6B3</string>
238
+ </array>
239
+ <key>isa</key>
240
+ <string>PBXGroup</string>
241
+ <key>name</key>
242
+ <string>Products</string>
243
+ <key>sourceTree</key>
244
+ <string>&lt;group&gt;</string>
245
+ </dict>
246
+ <key>8C9A202F195965F10013B6B3</key>
247
+ <dict>
248
+ <key>children</key>
249
+ <array>
250
+ <string>8C9A2030195965F10013B6B3</string>
251
+ <string>8C9A2041195965F10013B6B3</string>
252
+ <string>8C9A2032195965F10013B6B3</string>
253
+ </array>
254
+ <key>isa</key>
255
+ <string>PBXGroup</string>
256
+ <key>name</key>
257
+ <string>Frameworks</string>
258
+ <key>sourceTree</key>
259
+ <string>&lt;group&gt;</string>
260
+ </dict>
261
+ <key>8C9A2030195965F10013B6B3</key>
262
+ <dict>
263
+ <key>isa</key>
264
+ <string>PBXFileReference</string>
265
+ <key>lastKnownFileType</key>
266
+ <string>wrapper.framework</string>
267
+ <key>name</key>
268
+ <string>Cocoa.framework</string>
269
+ <key>path</key>
270
+ <string>System/Library/Frameworks/Cocoa.framework</string>
271
+ <key>sourceTree</key>
272
+ <string>SDKROOT</string>
273
+ </dict>
274
+ <key>8C9A2031195965F10013B6B3</key>
275
+ <dict>
276
+ <key>fileRef</key>
277
+ <string>8C9A2030195965F10013B6B3</string>
278
+ <key>isa</key>
279
+ <string>PBXBuildFile</string>
280
+ </dict>
281
+ <key>8C9A2032195965F10013B6B3</key>
282
+ <dict>
283
+ <key>children</key>
284
+ <array>
285
+ <string>8C9A2033195965F10013B6B3</string>
286
+ <string>8C9A2034195965F10013B6B3</string>
287
+ <string>8C9A2035195965F10013B6B3</string>
288
+ </array>
289
+ <key>isa</key>
290
+ <string>PBXGroup</string>
291
+ <key>name</key>
292
+ <string>Other Frameworks</string>
293
+ <key>sourceTree</key>
294
+ <string>&lt;group&gt;</string>
295
+ </dict>
296
+ <key>8C9A2033195965F10013B6B3</key>
297
+ <dict>
298
+ <key>isa</key>
299
+ <string>PBXFileReference</string>
300
+ <key>lastKnownFileType</key>
301
+ <string>wrapper.framework</string>
302
+ <key>name</key>
303
+ <string>Foundation.framework</string>
304
+ <key>path</key>
305
+ <string>System/Library/Frameworks/Foundation.framework</string>
306
+ <key>sourceTree</key>
307
+ <string>SDKROOT</string>
308
+ </dict>
309
+ <key>8C9A2034195965F10013B6B3</key>
310
+ <dict>
311
+ <key>isa</key>
312
+ <string>PBXFileReference</string>
313
+ <key>lastKnownFileType</key>
314
+ <string>wrapper.framework</string>
315
+ <key>name</key>
316
+ <string>CoreData.framework</string>
317
+ <key>path</key>
318
+ <string>System/Library/Frameworks/CoreData.framework</string>
319
+ <key>sourceTree</key>
320
+ <string>SDKROOT</string>
321
+ </dict>
322
+ <key>8C9A2035195965F10013B6B3</key>
323
+ <dict>
324
+ <key>isa</key>
325
+ <string>PBXFileReference</string>
326
+ <key>lastKnownFileType</key>
327
+ <string>wrapper.framework</string>
328
+ <key>name</key>
329
+ <string>AppKit.framework</string>
330
+ <key>path</key>
331
+ <string>System/Library/Frameworks/AppKit.framework</string>
332
+ <key>sourceTree</key>
333
+ <string>SDKROOT</string>
334
+ </dict>
335
+ <key>8C9A2036195965F10013B6B3</key>
336
+ <dict>
337
+ <key>children</key>
338
+ <array>
339
+ <string>8C52AEF4195AAE16008A882A</string>
340
+ <string>8C9A2039195965F10013B6B3</string>
341
+ <string>8C9A203A195965F10013B6B3</string>
342
+ <string>8C9A2037195965F10013B6B3</string>
343
+ </array>
344
+ <key>isa</key>
345
+ <string>PBXGroup</string>
346
+ <key>path</key>
347
+ <string>fixtures</string>
348
+ <key>sourceTree</key>
349
+ <string>&lt;group&gt;</string>
350
+ </dict>
351
+ <key>8C9A2037195965F10013B6B3</key>
352
+ <dict>
353
+ <key>children</key>
354
+ <array>
355
+ <string>8C9A2038195965F10013B6B3</string>
356
+ </array>
357
+ <key>isa</key>
358
+ <string>PBXGroup</string>
359
+ <key>path</key>
360
+ <string>Supporting Files</string>
361
+ <key>sourceTree</key>
362
+ <string>&lt;group&gt;</string>
363
+ </dict>
364
+ <key>8C9A2038195965F10013B6B3</key>
365
+ <dict>
366
+ <key>isa</key>
367
+ <string>PBXFileReference</string>
368
+ <key>lastKnownFileType</key>
369
+ <string>sourcecode.c.h</string>
370
+ <key>path</key>
371
+ <string>fixtures-Prefix.pch</string>
372
+ <key>sourceTree</key>
373
+ <string>&lt;group&gt;</string>
374
+ </dict>
375
+ <key>8C9A2039195965F10013B6B3</key>
376
+ <dict>
377
+ <key>isa</key>
378
+ <string>PBXFileReference</string>
379
+ <key>lastKnownFileType</key>
380
+ <string>sourcecode.c.h</string>
381
+ <key>path</key>
382
+ <string>fixtures.h</string>
383
+ <key>sourceTree</key>
384
+ <string>&lt;group&gt;</string>
385
+ </dict>
386
+ <key>8C9A203A195965F10013B6B3</key>
387
+ <dict>
388
+ <key>isa</key>
389
+ <string>PBXFileReference</string>
390
+ <key>lastKnownFileType</key>
391
+ <string>sourcecode.c.objc</string>
392
+ <key>path</key>
393
+ <string>fixtures.m</string>
394
+ <key>sourceTree</key>
395
+ <string>&lt;group&gt;</string>
396
+ </dict>
397
+ <key>8C9A203B195965F10013B6B3</key>
398
+ <dict>
399
+ <key>fileRef</key>
400
+ <string>8C9A203A195965F10013B6B3</string>
401
+ <key>isa</key>
402
+ <string>PBXBuildFile</string>
403
+ </dict>
404
+ <key>8C9A203C195965F10013B6B3</key>
405
+ <dict>
406
+ <key>buildActionMask</key>
407
+ <string>2147483647</string>
408
+ <key>files</key>
409
+ <array>
410
+ <string>8C9A204E195965F10013B6B3</string>
411
+ <string>8C52AEFA195AAE70008A882A</string>
412
+ </array>
413
+ <key>isa</key>
414
+ <string>PBXSourcesBuildPhase</string>
415
+ <key>runOnlyForDeploymentPostprocessing</key>
416
+ <string>0</string>
417
+ </dict>
418
+ <key>8C9A203D195965F10013B6B3</key>
419
+ <dict>
420
+ <key>buildActionMask</key>
421
+ <string>2147483647</string>
422
+ <key>files</key>
423
+ <array>
424
+ <string>8C9A2046195965F10013B6B3</string>
425
+ <string>8C9A2043195965F10013B6B3</string>
426
+ <string>8C9A2042195965F10013B6B3</string>
427
+ </array>
428
+ <key>isa</key>
429
+ <string>PBXFrameworksBuildPhase</string>
430
+ <key>runOnlyForDeploymentPostprocessing</key>
431
+ <string>0</string>
432
+ </dict>
433
+ <key>8C9A203E195965F10013B6B3</key>
434
+ <dict>
435
+ <key>buildActionMask</key>
436
+ <string>2147483647</string>
437
+ <key>files</key>
438
+ <array>
439
+ <string>8C9A204C195965F10013B6B3</string>
440
+ </array>
441
+ <key>isa</key>
442
+ <string>PBXResourcesBuildPhase</string>
443
+ <key>runOnlyForDeploymentPostprocessing</key>
444
+ <string>0</string>
445
+ </dict>
446
+ <key>8C9A203F195965F10013B6B3</key>
447
+ <dict>
448
+ <key>buildConfigurationList</key>
449
+ <string>8C9A2054195965F10013B6B3</string>
450
+ <key>buildPhases</key>
451
+ <array>
452
+ <string>8C9A203C195965F10013B6B3</string>
453
+ <string>8C9A203D195965F10013B6B3</string>
454
+ <string>8C9A203E195965F10013B6B3</string>
455
+ </array>
456
+ <key>buildRules</key>
457
+ <array/>
458
+ <key>dependencies</key>
459
+ <array>
460
+ <string>8C9A2045195965F10013B6B3</string>
461
+ </array>
462
+ <key>isa</key>
463
+ <string>PBXNativeTarget</string>
464
+ <key>name</key>
465
+ <string>fixturesTests</string>
466
+ <key>productName</key>
467
+ <string>fixturesTests</string>
468
+ <key>productReference</key>
469
+ <string>8C9A2040195965F10013B6B3</string>
470
+ <key>productType</key>
471
+ <string>com.apple.product-type.bundle.unit-test</string>
472
+ </dict>
473
+ <key>8C9A2040195965F10013B6B3</key>
474
+ <dict>
475
+ <key>explicitFileType</key>
476
+ <string>wrapper.cfbundle</string>
477
+ <key>includeInIndex</key>
478
+ <string>0</string>
479
+ <key>isa</key>
480
+ <string>PBXFileReference</string>
481
+ <key>path</key>
482
+ <string>fixturesTests.xctest</string>
483
+ <key>sourceTree</key>
484
+ <string>BUILT_PRODUCTS_DIR</string>
485
+ </dict>
486
+ <key>8C9A2041195965F10013B6B3</key>
487
+ <dict>
488
+ <key>isa</key>
489
+ <string>PBXFileReference</string>
490
+ <key>lastKnownFileType</key>
491
+ <string>wrapper.framework</string>
492
+ <key>name</key>
493
+ <string>XCTest.framework</string>
494
+ <key>path</key>
495
+ <string>Library/Frameworks/XCTest.framework</string>
496
+ <key>sourceTree</key>
497
+ <string>DEVELOPER_DIR</string>
498
+ </dict>
499
+ <key>8C9A2042195965F10013B6B3</key>
500
+ <dict>
501
+ <key>fileRef</key>
502
+ <string>8C9A2041195965F10013B6B3</string>
503
+ <key>isa</key>
504
+ <string>PBXBuildFile</string>
505
+ </dict>
506
+ <key>8C9A2043195965F10013B6B3</key>
507
+ <dict>
508
+ <key>fileRef</key>
509
+ <string>8C9A2030195965F10013B6B3</string>
510
+ <key>isa</key>
511
+ <string>PBXBuildFile</string>
512
+ </dict>
513
+ <key>8C9A2044195965F10013B6B3</key>
514
+ <dict>
515
+ <key>containerPortal</key>
516
+ <string>8C9A2025195965F00013B6B3</string>
517
+ <key>isa</key>
518
+ <string>PBXContainerItemProxy</string>
519
+ <key>proxyType</key>
520
+ <string>1</string>
521
+ <key>remoteGlobalIDString</key>
522
+ <string>8C9A202C195965F10013B6B3</string>
523
+ <key>remoteInfo</key>
524
+ <string>fixtures</string>
525
+ </dict>
526
+ <key>8C9A2045195965F10013B6B3</key>
527
+ <dict>
528
+ <key>isa</key>
529
+ <string>PBXTargetDependency</string>
530
+ <key>target</key>
531
+ <string>8C9A202C195965F10013B6B3</string>
532
+ <key>targetProxy</key>
533
+ <string>8C9A2044195965F10013B6B3</string>
534
+ </dict>
535
+ <key>8C9A2046195965F10013B6B3</key>
536
+ <dict>
537
+ <key>fileRef</key>
538
+ <string>8C9A202D195965F10013B6B3</string>
539
+ <key>isa</key>
540
+ <string>PBXBuildFile</string>
541
+ </dict>
542
+ <key>8C9A2047195965F10013B6B3</key>
543
+ <dict>
544
+ <key>children</key>
545
+ <array>
546
+ <string>8C9A204D195965F10013B6B3</string>
547
+ <string>8C9A2048195965F10013B6B3</string>
548
+ <string>8C52AEF9195AAE70008A882A</string>
549
+ </array>
550
+ <key>isa</key>
551
+ <string>PBXGroup</string>
552
+ <key>path</key>
553
+ <string>fixturesTests</string>
554
+ <key>sourceTree</key>
555
+ <string>&lt;group&gt;</string>
556
+ </dict>
557
+ <key>8C9A2048195965F10013B6B3</key>
558
+ <dict>
559
+ <key>children</key>
560
+ <array>
561
+ <string>8C9A2049195965F10013B6B3</string>
562
+ <string>8C9A204A195965F10013B6B3</string>
563
+ </array>
564
+ <key>isa</key>
565
+ <string>PBXGroup</string>
566
+ <key>path</key>
567
+ <string>Supporting Files</string>
568
+ <key>sourceTree</key>
569
+ <string>&lt;group&gt;</string>
570
+ </dict>
571
+ <key>8C9A2049195965F10013B6B3</key>
572
+ <dict>
573
+ <key>isa</key>
574
+ <string>PBXFileReference</string>
575
+ <key>lastKnownFileType</key>
576
+ <string>text.plist.xml</string>
577
+ <key>path</key>
578
+ <string>fixturesTests-Info.plist</string>
579
+ <key>sourceTree</key>
580
+ <string>&lt;group&gt;</string>
581
+ </dict>
582
+ <key>8C9A204A195965F10013B6B3</key>
583
+ <dict>
584
+ <key>children</key>
585
+ <array>
586
+ <string>8C9A204B195965F10013B6B3</string>
587
+ </array>
588
+ <key>isa</key>
589
+ <string>PBXVariantGroup</string>
590
+ <key>name</key>
591
+ <string>InfoPlist.strings</string>
592
+ <key>sourceTree</key>
593
+ <string>&lt;group&gt;</string>
594
+ </dict>
595
+ <key>8C9A204B195965F10013B6B3</key>
596
+ <dict>
597
+ <key>isa</key>
598
+ <string>PBXFileReference</string>
599
+ <key>lastKnownFileType</key>
600
+ <string>text.plist.strings</string>
601
+ <key>name</key>
602
+ <string>en</string>
603
+ <key>path</key>
604
+ <string>en.lproj/InfoPlist.strings</string>
605
+ <key>sourceTree</key>
606
+ <string>&lt;group&gt;</string>
607
+ </dict>
608
+ <key>8C9A204C195965F10013B6B3</key>
609
+ <dict>
610
+ <key>fileRef</key>
611
+ <string>8C9A204A195965F10013B6B3</string>
612
+ <key>isa</key>
613
+ <string>PBXBuildFile</string>
614
+ </dict>
615
+ <key>8C9A204D195965F10013B6B3</key>
616
+ <dict>
617
+ <key>isa</key>
618
+ <string>PBXFileReference</string>
619
+ <key>lastKnownFileType</key>
620
+ <string>sourcecode.c.objc</string>
621
+ <key>path</key>
622
+ <string>fixturesTests.m</string>
623
+ <key>sourceTree</key>
624
+ <string>&lt;group&gt;</string>
625
+ </dict>
626
+ <key>8C9A204E195965F10013B6B3</key>
627
+ <dict>
628
+ <key>fileRef</key>
629
+ <string>8C9A204D195965F10013B6B3</string>
630
+ <key>isa</key>
631
+ <string>PBXBuildFile</string>
632
+ </dict>
633
+ <key>8C9A204F195965F10013B6B3</key>
634
+ <dict>
635
+ <key>buildSettings</key>
636
+ <dict>
637
+ <key>ALWAYS_SEARCH_USER_PATHS</key>
638
+ <string>NO</string>
639
+ <key>CLANG_CXX_LANGUAGE_STANDARD</key>
640
+ <string>gnu++0x</string>
641
+ <key>CLANG_CXX_LIBRARY</key>
642
+ <string>libc++</string>
643
+ <key>CLANG_ENABLE_MODULES</key>
644
+ <string>YES</string>
645
+ <key>CLANG_ENABLE_OBJC_ARC</key>
646
+ <string>YES</string>
647
+ <key>CLANG_WARN_BOOL_CONVERSION</key>
648
+ <string>YES</string>
649
+ <key>CLANG_WARN_CONSTANT_CONVERSION</key>
650
+ <string>YES</string>
651
+ <key>CLANG_WARN_DIRECT_OBJC_ISA_USAGE</key>
652
+ <string>YES_ERROR</string>
653
+ <key>CLANG_WARN_EMPTY_BODY</key>
654
+ <string>YES</string>
655
+ <key>CLANG_WARN_ENUM_CONVERSION</key>
656
+ <string>YES</string>
657
+ <key>CLANG_WARN_INT_CONVERSION</key>
658
+ <string>YES</string>
659
+ <key>CLANG_WARN_OBJC_ROOT_CLASS</key>
660
+ <string>YES_ERROR</string>
661
+ <key>CLANG_WARN__DUPLICATE_METHOD_MATCH</key>
662
+ <string>YES</string>
663
+ <key>COPY_PHASE_STRIP</key>
664
+ <string>NO</string>
665
+ <key>GCC_C_LANGUAGE_STANDARD</key>
666
+ <string>gnu99</string>
667
+ <key>GCC_DYNAMIC_NO_PIC</key>
668
+ <string>NO</string>
669
+ <key>GCC_ENABLE_OBJC_EXCEPTIONS</key>
670
+ <string>YES</string>
671
+ <key>GCC_GENERATE_TEST_COVERAGE_FILES</key>
672
+ <string>YES</string>
673
+ <key>GCC_INSTRUMENT_PROGRAM_FLOW_ARCS</key>
674
+ <string>YES</string>
675
+ <key>GCC_OPTIMIZATION_LEVEL</key>
676
+ <string>0</string>
677
+ <key>GCC_PREPROCESSOR_DEFINITIONS</key>
678
+ <array>
679
+ <string>DEBUG=1</string>
680
+ <string>$(inherited)</string>
681
+ </array>
682
+ <key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
683
+ <string>NO</string>
684
+ <key>GCC_WARN_64_TO_32_BIT_CONVERSION</key>
685
+ <string>YES</string>
686
+ <key>GCC_WARN_ABOUT_RETURN_TYPE</key>
687
+ <string>YES_ERROR</string>
688
+ <key>GCC_WARN_UNDECLARED_SELECTOR</key>
689
+ <string>YES</string>
690
+ <key>GCC_WARN_UNINITIALIZED_AUTOS</key>
691
+ <string>YES_AGGRESSIVE</string>
692
+ <key>GCC_WARN_UNUSED_FUNCTION</key>
693
+ <string>YES</string>
694
+ <key>GCC_WARN_UNUSED_VARIABLE</key>
695
+ <string>YES</string>
696
+ <key>MACOSX_DEPLOYMENT_TARGET</key>
697
+ <string>10.9</string>
698
+ <key>ONLY_ACTIVE_ARCH</key>
699
+ <string>YES</string>
700
+ <key>SDKROOT</key>
701
+ <string>macosx</string>
702
+ </dict>
703
+ <key>isa</key>
704
+ <string>XCBuildConfiguration</string>
705
+ <key>name</key>
706
+ <string>Debug</string>
707
+ </dict>
708
+ <key>8C9A2050195965F10013B6B3</key>
709
+ <dict>
710
+ <key>buildSettings</key>
711
+ <dict>
712
+ <key>ALWAYS_SEARCH_USER_PATHS</key>
713
+ <string>NO</string>
714
+ <key>CLANG_CXX_LANGUAGE_STANDARD</key>
715
+ <string>gnu++0x</string>
716
+ <key>CLANG_CXX_LIBRARY</key>
717
+ <string>libc++</string>
718
+ <key>CLANG_ENABLE_MODULES</key>
719
+ <string>YES</string>
720
+ <key>CLANG_ENABLE_OBJC_ARC</key>
721
+ <string>YES</string>
722
+ <key>CLANG_WARN_BOOL_CONVERSION</key>
723
+ <string>YES</string>
724
+ <key>CLANG_WARN_CONSTANT_CONVERSION</key>
725
+ <string>YES</string>
726
+ <key>CLANG_WARN_DIRECT_OBJC_ISA_USAGE</key>
727
+ <string>YES_ERROR</string>
728
+ <key>CLANG_WARN_EMPTY_BODY</key>
729
+ <string>YES</string>
730
+ <key>CLANG_WARN_ENUM_CONVERSION</key>
731
+ <string>YES</string>
732
+ <key>CLANG_WARN_INT_CONVERSION</key>
733
+ <string>YES</string>
734
+ <key>CLANG_WARN_OBJC_ROOT_CLASS</key>
735
+ <string>YES_ERROR</string>
736
+ <key>CLANG_WARN__DUPLICATE_METHOD_MATCH</key>
737
+ <string>YES</string>
738
+ <key>COPY_PHASE_STRIP</key>
739
+ <string>YES</string>
740
+ <key>DEBUG_INFORMATION_FORMAT</key>
741
+ <string>dwarf-with-dsym</string>
742
+ <key>ENABLE_NS_ASSERTIONS</key>
743
+ <string>NO</string>
744
+ <key>GCC_C_LANGUAGE_STANDARD</key>
745
+ <string>gnu99</string>
746
+ <key>GCC_ENABLE_OBJC_EXCEPTIONS</key>
747
+ <string>YES</string>
748
+ <key>GCC_GENERATE_TEST_COVERAGE_FILES</key>
749
+ <string>YES</string>
750
+ <key>GCC_INSTRUMENT_PROGRAM_FLOW_ARCS</key>
751
+ <string>YES</string>
752
+ <key>GCC_WARN_64_TO_32_BIT_CONVERSION</key>
753
+ <string>YES</string>
754
+ <key>GCC_WARN_ABOUT_RETURN_TYPE</key>
755
+ <string>YES_ERROR</string>
756
+ <key>GCC_WARN_UNDECLARED_SELECTOR</key>
757
+ <string>YES</string>
758
+ <key>GCC_WARN_UNINITIALIZED_AUTOS</key>
759
+ <string>YES_AGGRESSIVE</string>
760
+ <key>GCC_WARN_UNUSED_FUNCTION</key>
761
+ <string>YES</string>
762
+ <key>GCC_WARN_UNUSED_VARIABLE</key>
763
+ <string>YES</string>
764
+ <key>MACOSX_DEPLOYMENT_TARGET</key>
765
+ <string>10.9</string>
766
+ <key>SDKROOT</key>
767
+ <string>macosx</string>
768
+ </dict>
769
+ <key>isa</key>
770
+ <string>XCBuildConfiguration</string>
771
+ <key>name</key>
772
+ <string>Release</string>
773
+ </dict>
774
+ <key>8C9A2051195965F10013B6B3</key>
775
+ <dict>
776
+ <key>buildConfigurations</key>
777
+ <array>
778
+ <string>8C9A2052195965F10013B6B3</string>
779
+ <string>8C9A2053195965F10013B6B3</string>
780
+ </array>
781
+ <key>defaultConfigurationIsVisible</key>
782
+ <string>0</string>
783
+ <key>defaultConfigurationName</key>
784
+ <string>Release</string>
785
+ <key>isa</key>
786
+ <string>XCConfigurationList</string>
787
+ </dict>
788
+ <key>8C9A2052195965F10013B6B3</key>
789
+ <dict>
790
+ <key>buildSettings</key>
791
+ <dict>
792
+ <key>GCC_GENERATE_TEST_COVERAGE_FILES</key>
793
+ <string>YES</string>
794
+ <key>GCC_INSTRUMENT_PROGRAM_FLOW_ARCS</key>
795
+ <string>YES</string>
796
+ <key>GCC_PRECOMPILE_PREFIX_HEADER</key>
797
+ <string>YES</string>
798
+ <key>GCC_PREFIX_HEADER</key>
799
+ <string>fixtures/Supporting Files/fixtures-Prefix.pch</string>
800
+ <key>PRODUCT_NAME</key>
801
+ <string>$(TARGET_NAME)</string>
802
+ </dict>
803
+ <key>isa</key>
804
+ <string>XCBuildConfiguration</string>
805
+ <key>name</key>
806
+ <string>Debug</string>
807
+ </dict>
808
+ <key>8C9A2053195965F10013B6B3</key>
809
+ <dict>
810
+ <key>buildSettings</key>
811
+ <dict>
812
+ <key>GCC_GENERATE_TEST_COVERAGE_FILES</key>
813
+ <string>YES</string>
814
+ <key>GCC_INSTRUMENT_PROGRAM_FLOW_ARCS</key>
815
+ <string>YES</string>
816
+ <key>GCC_PRECOMPILE_PREFIX_HEADER</key>
817
+ <string>YES</string>
818
+ <key>GCC_PREFIX_HEADER</key>
819
+ <string>fixtures/Supporting Files/fixtures-Prefix.pch</string>
820
+ <key>PRODUCT_NAME</key>
821
+ <string>$(TARGET_NAME)</string>
822
+ </dict>
823
+ <key>isa</key>
824
+ <string>XCBuildConfiguration</string>
825
+ <key>name</key>
826
+ <string>Release</string>
827
+ </dict>
828
+ <key>8C9A2054195965F10013B6B3</key>
829
+ <dict>
830
+ <key>buildConfigurations</key>
831
+ <array>
832
+ <string>8C9A2055195965F10013B6B3</string>
833
+ <string>8C9A2056195965F10013B6B3</string>
834
+ </array>
835
+ <key>defaultConfigurationIsVisible</key>
836
+ <string>0</string>
837
+ <key>defaultConfigurationName</key>
838
+ <string>Release</string>
839
+ <key>isa</key>
840
+ <string>XCConfigurationList</string>
841
+ </dict>
842
+ <key>8C9A2055195965F10013B6B3</key>
843
+ <dict>
844
+ <key>buildSettings</key>
845
+ <dict>
846
+ <key>COMBINE_HIDPI_IMAGES</key>
847
+ <string>YES</string>
848
+ <key>FRAMEWORK_SEARCH_PATHS</key>
849
+ <array>
850
+ <string>$(DEVELOPER_FRAMEWORKS_DIR)</string>
851
+ <string>$(inherited)</string>
852
+ </array>
853
+ <key>GCC_PRECOMPILE_PREFIX_HEADER</key>
854
+ <string>YES</string>
855
+ <key>GCC_PREFIX_HEADER</key>
856
+ <string>fixtures/Supporting Files/fixtures-Prefix.pch</string>
857
+ <key>GCC_PREPROCESSOR_DEFINITIONS</key>
858
+ <array>
859
+ <string>DEBUG=1</string>
860
+ <string>$(inherited)</string>
861
+ </array>
862
+ <key>INFOPLIST_FILE</key>
863
+ <string>fixturesTests/Supporting Files/fixturesTests-Info.plist</string>
864
+ <key>PRODUCT_NAME</key>
865
+ <string>$(TARGET_NAME)</string>
866
+ <key>WRAPPER_EXTENSION</key>
867
+ <string>xctest</string>
868
+ </dict>
869
+ <key>isa</key>
870
+ <string>XCBuildConfiguration</string>
871
+ <key>name</key>
872
+ <string>Debug</string>
873
+ </dict>
874
+ <key>8C9A2056195965F10013B6B3</key>
875
+ <dict>
876
+ <key>buildSettings</key>
877
+ <dict>
878
+ <key>COMBINE_HIDPI_IMAGES</key>
879
+ <string>YES</string>
880
+ <key>FRAMEWORK_SEARCH_PATHS</key>
881
+ <array>
882
+ <string>$(DEVELOPER_FRAMEWORKS_DIR)</string>
883
+ <string>$(inherited)</string>
884
+ </array>
885
+ <key>GCC_PRECOMPILE_PREFIX_HEADER</key>
886
+ <string>YES</string>
887
+ <key>GCC_PREFIX_HEADER</key>
888
+ <string>fixtures/Supporting Files/fixtures-Prefix.pch</string>
889
+ <key>INFOPLIST_FILE</key>
890
+ <string>fixturesTests/Supporting Files/fixturesTests-Info.plist</string>
891
+ <key>PRODUCT_NAME</key>
892
+ <string>$(TARGET_NAME)</string>
893
+ <key>WRAPPER_EXTENSION</key>
894
+ <string>xctest</string>
895
+ </dict>
896
+ <key>isa</key>
897
+ <string>XCBuildConfiguration</string>
898
+ <key>name</key>
899
+ <string>Release</string>
900
+ </dict>
901
+ </dict>
902
+ <key>rootObject</key>
903
+ <string>8C9A2025195965F00013B6B3</string>
904
+ </dict>
905
+ </plist>