furter 0.0.3.1 → 0.0.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +15 -0
  2. data/.travis.yml +5 -4
  3. data/Changelog +3 -0
  4. data/Gemfile +1 -0
  5. data/README.md +3 -1
  6. data/app/FurterApp/Frank/frank.xcconfig +15 -0
  7. data/app/FurterApp/Frank/frankify.xcconfig +3 -3
  8. data/app/FurterApp/Frank/libCocoaAsyncSocket.a +0 -0
  9. data/app/FurterApp/Frank/libCocoaAsyncSocketMac.a +0 -0
  10. data/app/FurterApp/Frank/libCocoaHTTPServer.a +0 -0
  11. data/app/FurterApp/Frank/libCocoaHTTPServerMac.a +0 -0
  12. data/app/FurterApp/Frank/libCocoaLumberjack.a +0 -0
  13. data/app/FurterApp/Frank/libCocoaLumberjackMac.a +0 -0
  14. data/app/FurterApp/Frank/libFrank.a +0 -0
  15. data/app/FurterApp/Frank/libFrankMac.a +0 -0
  16. data/app/FurterApp/Frank/libShelley.a +0 -0
  17. data/app/FurterApp/FurterApp.xcodeproj/project.pbxproj +365 -807
  18. data/app/FurterApp/FurterApp/DetailViewController.h +3 -0
  19. data/app/FurterApp/FurterApp/DetailViewController.m +8 -0
  20. data/app/FurterApp/FurterApp/en.lproj/MainStoryboard_iPad.storyboard +18 -1
  21. data/app/FurterApp/TablesViewController.h +22 -0
  22. data/app/FurterApp/TablesViewController.m +133 -0
  23. data/app/FurterApp/TablesViewController.xib +577 -0
  24. data/features/label.feature +2 -1
  25. data/features/step_definitions/label_steps.rb +2 -2
  26. data/features/step_definitions/table_steps.rb +3 -0
  27. data/features/support/env.rb +4 -0
  28. data/features/support/screens/detail.rb +1 -0
  29. data/features/support/screens/tables.rb +10 -0
  30. data/features/table.feature +8 -0
  31. data/furter.gemspec +2 -1
  32. data/lib/furter/accessors.rb +5 -1
  33. data/lib/furter/accessors/table.rb +3 -1
  34. data/lib/furter/accessors/view.rb +1 -0
  35. data/lib/furter/version.rb +1 -1
  36. data/spec/lib/furter/accessors/table_spec.rb +20 -0
  37. data/spec/spec_helper.rb +2 -0
  38. metadata +33 -25
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ZTk5M2Q2MjQ0NDc1N2NiODA2OTk0Njg2Y2IyNjIyMGI4M2I2MzU0MQ==
5
+ data.tar.gz: !binary |-
6
+ NTE2YmY2NmJmODI3NjY3ZDcwMzQwZTdkZTBiYjM1ZTIyZjk3NzY5Mw==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ NDQ2NzA1MzI4OTc0ZGQyYTc2ZjdmMjI0YTdlYTVjM2ExODcxMjA0NWEzY2Ji
10
+ NzhmZTM3NTMzN2QyNjFiOGQ4OTRiYzkxNTQxMDk4ZTZhYzcyYTk1ZGU5ZGFk
11
+ M2FlNzM4YjU3YzQzYTgzMDgxOTkxNjkxYWY0MjgxYzBkYzcxMDQ=
12
+ data.tar.gz: !binary |-
13
+ MDIzNjlmMDA2ZmExNzVjNDQ3ZDBiZjQwZmNkNTIwZjdhM2U5Y2M1NTFhMmY1
14
+ NGNiNzE0YzNiZjhiZjBiYmQyMzI0ZGI1MTYwMzY0MGViOTMzNDM5MmVmZjE2
15
+ MWQxODg2NWI4MWRhY2UzY2RkZjg4ZGVkOTFlODkwMTIwN2Q1N2Q=
@@ -1,5 +1,6 @@
1
- language: ruby
1
+ language: objective-c
2
2
  rvm: 1.9.3
3
- before_install:
4
- - sudo apt-get update -qq
5
- - sudo apt-get install -qq libavahi-compat-libdnssd-dev
3
+ env: USE_SIM_LAUNCHER_SERVER=true
4
+ script:
5
+ - sim_launcher &
6
+ - rake test
data/Changelog CHANGED
@@ -1,3 +1,6 @@
1
+ === Version 0.3.2 / 2013-09-23
2
+ * can select a table item by index
3
+
1
4
  === Version 0.3.1 / 2013-04-23
2
5
  * added a new slider accessor
3
6
  * added a views accessor to define which view controllers should be on a screen
data/Gemfile CHANGED
@@ -1,3 +1,4 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
+ gem 'coveralls', require: false
3
4
  gemspec
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
1
  # Furter
2
+ [![Build Status](https://travis-ci.org/leviwilson/furter.png)](https://travis-ci.org/leviwilson/furter)
3
+ [![Coverage Status](https://coveralls.io/repos/leviwilson/furter/badge.png)](https://coveralls.io/r/leviwilson/furter)
2
4
 
3
5
  A gem to assist in building page-object like structures for testing iOS applications. `furter` uses [`frank-cucumber`](http://testingwithfrank.com/) to automate iOS applications using page-objects.
4
6
 
@@ -53,7 +55,7 @@ In your step definition, use the `Furter::Navigation#on` method when using your
53
55
  When ^I login to my application$ do
54
56
  on(LoginScreen) do |screen|
55
57
  screen.username = 'user@example.com'
56
- screen.password = '$3cr3t`
58
+ screen.password = '$3cr3t'
57
59
  screen.login
58
60
  end
59
61
  end
@@ -0,0 +1,15 @@
1
+ #include "frankify.xcconfig"
2
+
3
+ INSTALL_PATH = /./
4
+
5
+
6
+
7
+ FRANK_LDFLAGS_iphoneos = $(FRANK_CORE_LDFLAGS)
8
+
9
+ FRANK_LDFLAGS_macosx = $(FRANK_CORE_MAC_LDFLAGS)
10
+
11
+ FRANK_LDFLAGS_iphonesimulator = $(FRANK_LDFLAGS_iphoneos)
12
+
13
+ FRANK_LDFLAGS = $(FRANK_LDFLAGS_$(PLATFORM_NAME))
14
+
15
+ FRANK_GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = $(FRANK_CORE_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS)
@@ -1,6 +1,6 @@
1
1
  INSTALL_PATH = /./
2
2
 
3
- FRANK_LDFLAGS = -all_load -ObjC -framework CFNetwork -framework Security -lShelley -lFrank -lShelley -lCocoaAsyncSocket -lCocoaLumberjack -lCocoaHTTPServer -lFrank
4
- FRANK_MAC_LDFLAGS = -all_load -ObjC -framework CFNetwork -framework Security -lShelleyMac -lFrankMac -lCocoaAsyncSocketMac -lCocoaLumberjackMac -lCocoaHTTPServerMac -lFrankMac
3
+ FRANK_CORE_LDFLAGS = -all_load -ObjC -framework CFNetwork -framework Security -lShelley -lCocoaAsyncSocket -lCocoaLumberjack -lCocoaHTTPServer -lFrank
4
+ FRANK_CORE_MAC_LDFLAGS = -all_load -ObjC -framework CFNetwork -framework Security -lShelleyMac -lCocoaAsyncSocketMac -lCocoaLumberjackMac -lCocoaHTTPServerMac -lFrankMac
5
5
 
6
- GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = FRANKIFIED
6
+ FRANK_CORE_GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = FRANKIFIED
@@ -1,807 +1,365 @@
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>124F2A7116FAAADC00865092</key>
14
- <dict>
15
- <key>children</key>
16
- <array>
17
- <string>124F2A8516FAAADC00865092</string>
18
- <string>124F2A7C16FAAADC00865092</string>
19
- <string>124F2A7B16FAAADC00865092</string>
20
- </array>
21
- <key>isa</key>
22
- <string>PBXGroup</string>
23
- <key>sourceTree</key>
24
- <string>&lt;group&gt;</string>
25
- </dict>
26
- <key>124F2A7216FAAADC00865092</key>
27
- <dict>
28
- <key>attributes</key>
29
- <dict>
30
- <key>LastUpgradeCheck</key>
31
- <string>0460</string>
32
- <key>ORGANIZATIONNAME</key>
33
- <string>Levi Wilson</string>
34
- </dict>
35
- <key>buildConfigurationList</key>
36
- <string>124F2A7516FAAADC00865092</string>
37
- <key>compatibilityVersion</key>
38
- <string>Xcode 3.2</string>
39
- <key>developmentRegion</key>
40
- <string>English</string>
41
- <key>hasScannedForEncodings</key>
42
- <string>0</string>
43
- <key>isa</key>
44
- <string>PBXProject</string>
45
- <key>knownRegions</key>
46
- <array>
47
- <string>en</string>
48
- </array>
49
- <key>mainGroup</key>
50
- <string>124F2A7116FAAADC00865092</string>
51
- <key>productRefGroup</key>
52
- <string>124F2A7B16FAAADC00865092</string>
53
- <key>projectDirPath</key>
54
- <string></string>
55
- <key>projectReferences</key>
56
- <array/>
57
- <key>projectRoot</key>
58
- <string></string>
59
- <key>targets</key>
60
- <array>
61
- <string>124F2A7916FAAADC00865092</string>
62
- </array>
63
- </dict>
64
- <key>124F2A7516FAAADC00865092</key>
65
- <dict>
66
- <key>buildConfigurations</key>
67
- <array>
68
- <string>124F2AA616FAAADC00865092</string>
69
- <string>124F2AA716FAAADC00865092</string>
70
- </array>
71
- <key>defaultConfigurationIsVisible</key>
72
- <string>0</string>
73
- <key>defaultConfigurationName</key>
74
- <string>Release</string>
75
- <key>isa</key>
76
- <string>XCConfigurationList</string>
77
- </dict>
78
- <key>124F2A7616FAAADC00865092</key>
79
- <dict>
80
- <key>buildActionMask</key>
81
- <string>2147483647</string>
82
- <key>files</key>
83
- <array>
84
- <string>124F2A8C16FAAADC00865092</string>
85
- <string>124F2A9016FAAADC00865092</string>
86
- <string>124F2A9F16FAAADC00865092</string>
87
- <string>124F2AA216FAAADC00865092</string>
88
- <string>124F2AA516FAAADC00865092</string>
89
- </array>
90
- <key>isa</key>
91
- <string>PBXSourcesBuildPhase</string>
92
- <key>runOnlyForDeploymentPostprocessing</key>
93
- <string>0</string>
94
- </dict>
95
- <key>124F2A7716FAAADC00865092</key>
96
- <dict>
97
- <key>buildActionMask</key>
98
- <string>2147483647</string>
99
- <key>files</key>
100
- <array>
101
- <string>124F2A7E16FAAADC00865092</string>
102
- <string>124F2A8016FAAADC00865092</string>
103
- <string>124F2A8216FAAADC00865092</string>
104
- <string>124F2A8416FAAADC00865092</string>
105
- </array>
106
- <key>isa</key>
107
- <string>PBXFrameworksBuildPhase</string>
108
- <key>runOnlyForDeploymentPostprocessing</key>
109
- <string>0</string>
110
- </dict>
111
- <key>124F2A7816FAAADC00865092</key>
112
- <dict>
113
- <key>buildActionMask</key>
114
- <string>2147483647</string>
115
- <key>files</key>
116
- <array>
117
- <string>124F2A8A16FAAADC00865092</string>
118
- <string>124F2A9216FAAADC00865092</string>
119
- <string>124F2A9416FAAADC00865092</string>
120
- <string>124F2A9616FAAADC00865092</string>
121
- <string>124F2A9916FAAADC00865092</string>
122
- <string>124F2A9C16FAAADC00865092</string>
123
- </array>
124
- <key>isa</key>
125
- <string>PBXResourcesBuildPhase</string>
126
- <key>runOnlyForDeploymentPostprocessing</key>
127
- <string>0</string>
128
- </dict>
129
- <key>124F2A7916FAAADC00865092</key>
130
- <dict>
131
- <key>buildConfigurationList</key>
132
- <string>124F2AA816FAAADC00865092</string>
133
- <key>buildPhases</key>
134
- <array>
135
- <string>124F2A7616FAAADC00865092</string>
136
- <string>124F2A7716FAAADC00865092</string>
137
- <string>124F2A7816FAAADC00865092</string>
138
- </array>
139
- <key>buildRules</key>
140
- <array/>
141
- <key>dependencies</key>
142
- <array/>
143
- <key>isa</key>
144
- <string>PBXNativeTarget</string>
145
- <key>name</key>
146
- <string>FurterApp</string>
147
- <key>productName</key>
148
- <string>FurterApp</string>
149
- <key>productReference</key>
150
- <string>124F2A7A16FAAADC00865092</string>
151
- <key>productType</key>
152
- <string>com.apple.product-type.application</string>
153
- </dict>
154
- <key>124F2A7A16FAAADC00865092</key>
155
- <dict>
156
- <key>explicitFileType</key>
157
- <string>wrapper.application</string>
158
- <key>includeInIndex</key>
159
- <string>0</string>
160
- <key>isa</key>
161
- <string>PBXFileReference</string>
162
- <key>path</key>
163
- <string>FurterApp.app</string>
164
- <key>sourceTree</key>
165
- <string>BUILT_PRODUCTS_DIR</string>
166
- </dict>
167
- <key>124F2A7B16FAAADC00865092</key>
168
- <dict>
169
- <key>children</key>
170
- <array>
171
- <string>124F2A7A16FAAADC00865092</string>
172
- </array>
173
- <key>isa</key>
174
- <string>PBXGroup</string>
175
- <key>name</key>
176
- <string>Products</string>
177
- <key>sourceTree</key>
178
- <string>&lt;group&gt;</string>
179
- </dict>
180
- <key>124F2A7C16FAAADC00865092</key>
181
- <dict>
182
- <key>children</key>
183
- <array>
184
- <string>124F2A7D16FAAADC00865092</string>
185
- <string>124F2A7F16FAAADC00865092</string>
186
- <string>124F2A8116FAAADC00865092</string>
187
- <string>124F2A8316FAAADC00865092</string>
188
- </array>
189
- <key>isa</key>
190
- <string>PBXGroup</string>
191
- <key>name</key>
192
- <string>Frameworks</string>
193
- <key>sourceTree</key>
194
- <string>&lt;group&gt;</string>
195
- </dict>
196
- <key>124F2A7D16FAAADC00865092</key>
197
- <dict>
198
- <key>isa</key>
199
- <string>PBXFileReference</string>
200
- <key>lastKnownFileType</key>
201
- <string>wrapper.framework</string>
202
- <key>name</key>
203
- <string>UIKit.framework</string>
204
- <key>path</key>
205
- <string>System/Library/Frameworks/UIKit.framework</string>
206
- <key>sourceTree</key>
207
- <string>SDKROOT</string>
208
- </dict>
209
- <key>124F2A7E16FAAADC00865092</key>
210
- <dict>
211
- <key>fileRef</key>
212
- <string>124F2A7D16FAAADC00865092</string>
213
- <key>isa</key>
214
- <string>PBXBuildFile</string>
215
- </dict>
216
- <key>124F2A7F16FAAADC00865092</key>
217
- <dict>
218
- <key>isa</key>
219
- <string>PBXFileReference</string>
220
- <key>lastKnownFileType</key>
221
- <string>wrapper.framework</string>
222
- <key>name</key>
223
- <string>Foundation.framework</string>
224
- <key>path</key>
225
- <string>System/Library/Frameworks/Foundation.framework</string>
226
- <key>sourceTree</key>
227
- <string>SDKROOT</string>
228
- </dict>
229
- <key>124F2A8016FAAADC00865092</key>
230
- <dict>
231
- <key>fileRef</key>
232
- <string>124F2A7F16FAAADC00865092</string>
233
- <key>isa</key>
234
- <string>PBXBuildFile</string>
235
- </dict>
236
- <key>124F2A8116FAAADC00865092</key>
237
- <dict>
238
- <key>isa</key>
239
- <string>PBXFileReference</string>
240
- <key>lastKnownFileType</key>
241
- <string>wrapper.framework</string>
242
- <key>name</key>
243
- <string>CoreGraphics.framework</string>
244
- <key>path</key>
245
- <string>System/Library/Frameworks/CoreGraphics.framework</string>
246
- <key>sourceTree</key>
247
- <string>SDKROOT</string>
248
- </dict>
249
- <key>124F2A8216FAAADC00865092</key>
250
- <dict>
251
- <key>fileRef</key>
252
- <string>124F2A8116FAAADC00865092</string>
253
- <key>isa</key>
254
- <string>PBXBuildFile</string>
255
- </dict>
256
- <key>124F2A8316FAAADC00865092</key>
257
- <dict>
258
- <key>isa</key>
259
- <string>PBXFileReference</string>
260
- <key>lastKnownFileType</key>
261
- <string>wrapper.framework</string>
262
- <key>name</key>
263
- <string>CoreData.framework</string>
264
- <key>path</key>
265
- <string>System/Library/Frameworks/CoreData.framework</string>
266
- <key>sourceTree</key>
267
- <string>SDKROOT</string>
268
- </dict>
269
- <key>124F2A8416FAAADC00865092</key>
270
- <dict>
271
- <key>fileRef</key>
272
- <string>124F2A8316FAAADC00865092</string>
273
- <key>isa</key>
274
- <string>PBXBuildFile</string>
275
- </dict>
276
- <key>124F2A8516FAAADC00865092</key>
277
- <dict>
278
- <key>children</key>
279
- <array>
280
- <string>124F2A8E16FAAADC00865092</string>
281
- <string>124F2A8F16FAAADC00865092</string>
282
- <string>124F2A9716FAAADC00865092</string>
283
- <string>124F2A9A16FAAADC00865092</string>
284
- <string>124F2AA016FAAADC00865092</string>
285
- <string>124F2AA116FAAADC00865092</string>
286
- <string>124F2AA316FAAADC00865092</string>
287
- <string>124F2AA416FAAADC00865092</string>
288
- <string>124F2A9D16FAAADC00865092</string>
289
- <string>124F2A8616FAAADC00865092</string>
290
- </array>
291
- <key>isa</key>
292
- <string>PBXGroup</string>
293
- <key>path</key>
294
- <string>FurterApp</string>
295
- <key>sourceTree</key>
296
- <string>&lt;group&gt;</string>
297
- </dict>
298
- <key>124F2A8616FAAADC00865092</key>
299
- <dict>
300
- <key>children</key>
301
- <array>
302
- <string>124F2A8716FAAADC00865092</string>
303
- <string>124F2A8816FAAADC00865092</string>
304
- <string>124F2A8B16FAAADC00865092</string>
305
- <string>124F2A8D16FAAADC00865092</string>
306
- <string>124F2A9116FAAADC00865092</string>
307
- <string>124F2A9316FAAADC00865092</string>
308
- <string>124F2A9516FAAADC00865092</string>
309
- </array>
310
- <key>isa</key>
311
- <string>PBXGroup</string>
312
- <key>name</key>
313
- <string>Supporting Files</string>
314
- <key>sourceTree</key>
315
- <string>&lt;group&gt;</string>
316
- </dict>
317
- <key>124F2A8716FAAADC00865092</key>
318
- <dict>
319
- <key>isa</key>
320
- <string>PBXFileReference</string>
321
- <key>lastKnownFileType</key>
322
- <string>text.plist.xml</string>
323
- <key>path</key>
324
- <string>FurterApp-Info.plist</string>
325
- <key>sourceTree</key>
326
- <string>&lt;group&gt;</string>
327
- </dict>
328
- <key>124F2A8816FAAADC00865092</key>
329
- <dict>
330
- <key>children</key>
331
- <array>
332
- <string>124F2A8916FAAADC00865092</string>
333
- </array>
334
- <key>isa</key>
335
- <string>PBXVariantGroup</string>
336
- <key>name</key>
337
- <string>InfoPlist.strings</string>
338
- <key>sourceTree</key>
339
- <string>&lt;group&gt;</string>
340
- </dict>
341
- <key>124F2A8916FAAADC00865092</key>
342
- <dict>
343
- <key>isa</key>
344
- <string>PBXFileReference</string>
345
- <key>lastKnownFileType</key>
346
- <string>text.plist.strings</string>
347
- <key>name</key>
348
- <string>en</string>
349
- <key>path</key>
350
- <string>en.lproj/InfoPlist.strings</string>
351
- <key>sourceTree</key>
352
- <string>&lt;group&gt;</string>
353
- </dict>
354
- <key>124F2A8A16FAAADC00865092</key>
355
- <dict>
356
- <key>fileRef</key>
357
- <string>124F2A8816FAAADC00865092</string>
358
- <key>isa</key>
359
- <string>PBXBuildFile</string>
360
- </dict>
361
- <key>124F2A8B16FAAADC00865092</key>
362
- <dict>
363
- <key>isa</key>
364
- <string>PBXFileReference</string>
365
- <key>lastKnownFileType</key>
366
- <string>sourcecode.c.objc</string>
367
- <key>path</key>
368
- <string>main.m</string>
369
- <key>sourceTree</key>
370
- <string>&lt;group&gt;</string>
371
- </dict>
372
- <key>124F2A8C16FAAADC00865092</key>
373
- <dict>
374
- <key>fileRef</key>
375
- <string>124F2A8B16FAAADC00865092</string>
376
- <key>isa</key>
377
- <string>PBXBuildFile</string>
378
- </dict>
379
- <key>124F2A8D16FAAADC00865092</key>
380
- <dict>
381
- <key>isa</key>
382
- <string>PBXFileReference</string>
383
- <key>lastKnownFileType</key>
384
- <string>sourcecode.c.h</string>
385
- <key>path</key>
386
- <string>FurterApp-Prefix.pch</string>
387
- <key>sourceTree</key>
388
- <string>&lt;group&gt;</string>
389
- </dict>
390
- <key>124F2A8E16FAAADC00865092</key>
391
- <dict>
392
- <key>isa</key>
393
- <string>PBXFileReference</string>
394
- <key>lastKnownFileType</key>
395
- <string>sourcecode.c.h</string>
396
- <key>path</key>
397
- <string>AppDelegate.h</string>
398
- <key>sourceTree</key>
399
- <string>&lt;group&gt;</string>
400
- </dict>
401
- <key>124F2A8F16FAAADC00865092</key>
402
- <dict>
403
- <key>isa</key>
404
- <string>PBXFileReference</string>
405
- <key>lastKnownFileType</key>
406
- <string>sourcecode.c.objc</string>
407
- <key>path</key>
408
- <string>AppDelegate.m</string>
409
- <key>sourceTree</key>
410
- <string>&lt;group&gt;</string>
411
- </dict>
412
- <key>124F2A9016FAAADC00865092</key>
413
- <dict>
414
- <key>fileRef</key>
415
- <string>124F2A8F16FAAADC00865092</string>
416
- <key>isa</key>
417
- <string>PBXBuildFile</string>
418
- </dict>
419
- <key>124F2A9116FAAADC00865092</key>
420
- <dict>
421
- <key>isa</key>
422
- <string>PBXFileReference</string>
423
- <key>lastKnownFileType</key>
424
- <string>image.png</string>
425
- <key>path</key>
426
- <string>Default.png</string>
427
- <key>sourceTree</key>
428
- <string>&lt;group&gt;</string>
429
- </dict>
430
- <key>124F2A9216FAAADC00865092</key>
431
- <dict>
432
- <key>fileRef</key>
433
- <string>124F2A9116FAAADC00865092</string>
434
- <key>isa</key>
435
- <string>PBXBuildFile</string>
436
- </dict>
437
- <key>124F2A9316FAAADC00865092</key>
438
- <dict>
439
- <key>isa</key>
440
- <string>PBXFileReference</string>
441
- <key>lastKnownFileType</key>
442
- <string>image.png</string>
443
- <key>path</key>
444
- <string>Default@2x.png</string>
445
- <key>sourceTree</key>
446
- <string>&lt;group&gt;</string>
447
- </dict>
448
- <key>124F2A9416FAAADC00865092</key>
449
- <dict>
450
- <key>fileRef</key>
451
- <string>124F2A9316FAAADC00865092</string>
452
- <key>isa</key>
453
- <string>PBXBuildFile</string>
454
- </dict>
455
- <key>124F2A9516FAAADC00865092</key>
456
- <dict>
457
- <key>isa</key>
458
- <string>PBXFileReference</string>
459
- <key>lastKnownFileType</key>
460
- <string>image.png</string>
461
- <key>path</key>
462
- <string>Default-568h@2x.png</string>
463
- <key>sourceTree</key>
464
- <string>&lt;group&gt;</string>
465
- </dict>
466
- <key>124F2A9616FAAADC00865092</key>
467
- <dict>
468
- <key>fileRef</key>
469
- <string>124F2A9516FAAADC00865092</string>
470
- <key>isa</key>
471
- <string>PBXBuildFile</string>
472
- </dict>
473
- <key>124F2A9716FAAADC00865092</key>
474
- <dict>
475
- <key>children</key>
476
- <array>
477
- <string>124F2A9816FAAADC00865092</string>
478
- </array>
479
- <key>isa</key>
480
- <string>PBXVariantGroup</string>
481
- <key>name</key>
482
- <string>MainStoryboard_iPhone.storyboard</string>
483
- <key>sourceTree</key>
484
- <string>&lt;group&gt;</string>
485
- </dict>
486
- <key>124F2A9816FAAADC00865092</key>
487
- <dict>
488
- <key>isa</key>
489
- <string>PBXFileReference</string>
490
- <key>lastKnownFileType</key>
491
- <string>file.storyboard</string>
492
- <key>name</key>
493
- <string>en</string>
494
- <key>path</key>
495
- <string>en.lproj/MainStoryboard_iPhone.storyboard</string>
496
- <key>sourceTree</key>
497
- <string>&lt;group&gt;</string>
498
- </dict>
499
- <key>124F2A9916FAAADC00865092</key>
500
- <dict>
501
- <key>fileRef</key>
502
- <string>124F2A9716FAAADC00865092</string>
503
- <key>isa</key>
504
- <string>PBXBuildFile</string>
505
- </dict>
506
- <key>124F2A9A16FAAADC00865092</key>
507
- <dict>
508
- <key>children</key>
509
- <array>
510
- <string>124F2A9B16FAAADC00865092</string>
511
- </array>
512
- <key>isa</key>
513
- <string>PBXVariantGroup</string>
514
- <key>name</key>
515
- <string>MainStoryboard_iPad.storyboard</string>
516
- <key>sourceTree</key>
517
- <string>&lt;group&gt;</string>
518
- </dict>
519
- <key>124F2A9B16FAAADC00865092</key>
520
- <dict>
521
- <key>isa</key>
522
- <string>PBXFileReference</string>
523
- <key>lastKnownFileType</key>
524
- <string>file.storyboard</string>
525
- <key>name</key>
526
- <string>en</string>
527
- <key>path</key>
528
- <string>en.lproj/MainStoryboard_iPad.storyboard</string>
529
- <key>sourceTree</key>
530
- <string>&lt;group&gt;</string>
531
- </dict>
532
- <key>124F2A9C16FAAADC00865092</key>
533
- <dict>
534
- <key>fileRef</key>
535
- <string>124F2A9A16FAAADC00865092</string>
536
- <key>isa</key>
537
- <string>PBXBuildFile</string>
538
- </dict>
539
- <key>124F2A9D16FAAADC00865092</key>
540
- <dict>
541
- <key>children</key>
542
- <array>
543
- <string>124F2A9E16FAAADC00865092</string>
544
- </array>
545
- <key>currentVersion</key>
546
- <string>124F2A9E16FAAADC00865092</string>
547
- <key>isa</key>
548
- <string>XCVersionGroup</string>
549
- <key>path</key>
550
- <string>FurterApp.xcdatamodeld</string>
551
- <key>sourceTree</key>
552
- <string>&lt;group&gt;</string>
553
- <key>versionGroupType</key>
554
- <string>wrapper.xcdatamodel</string>
555
- </dict>
556
- <key>124F2A9E16FAAADC00865092</key>
557
- <dict>
558
- <key>isa</key>
559
- <string>PBXFileReference</string>
560
- <key>lastKnownFileType</key>
561
- <string>wrapper.xcdatamodel</string>
562
- <key>path</key>
563
- <string>FurterApp.xcdatamodel</string>
564
- <key>sourceTree</key>
565
- <string>&lt;group&gt;</string>
566
- </dict>
567
- <key>124F2A9F16FAAADC00865092</key>
568
- <dict>
569
- <key>fileRef</key>
570
- <string>124F2A9D16FAAADC00865092</string>
571
- <key>isa</key>
572
- <string>PBXBuildFile</string>
573
- </dict>
574
- <key>124F2AA016FAAADC00865092</key>
575
- <dict>
576
- <key>isa</key>
577
- <string>PBXFileReference</string>
578
- <key>lastKnownFileType</key>
579
- <string>sourcecode.c.h</string>
580
- <key>path</key>
581
- <string>MasterViewController.h</string>
582
- <key>sourceTree</key>
583
- <string>&lt;group&gt;</string>
584
- </dict>
585
- <key>124F2AA116FAAADC00865092</key>
586
- <dict>
587
- <key>isa</key>
588
- <string>PBXFileReference</string>
589
- <key>lastKnownFileType</key>
590
- <string>sourcecode.c.objc</string>
591
- <key>path</key>
592
- <string>MasterViewController.m</string>
593
- <key>sourceTree</key>
594
- <string>&lt;group&gt;</string>
595
- </dict>
596
- <key>124F2AA216FAAADC00865092</key>
597
- <dict>
598
- <key>fileRef</key>
599
- <string>124F2AA116FAAADC00865092</string>
600
- <key>isa</key>
601
- <string>PBXBuildFile</string>
602
- </dict>
603
- <key>124F2AA316FAAADC00865092</key>
604
- <dict>
605
- <key>isa</key>
606
- <string>PBXFileReference</string>
607
- <key>lastKnownFileType</key>
608
- <string>sourcecode.c.h</string>
609
- <key>path</key>
610
- <string>DetailViewController.h</string>
611
- <key>sourceTree</key>
612
- <string>&lt;group&gt;</string>
613
- </dict>
614
- <key>124F2AA416FAAADC00865092</key>
615
- <dict>
616
- <key>isa</key>
617
- <string>PBXFileReference</string>
618
- <key>lastKnownFileType</key>
619
- <string>sourcecode.c.objc</string>
620
- <key>path</key>
621
- <string>DetailViewController.m</string>
622
- <key>sourceTree</key>
623
- <string>&lt;group&gt;</string>
624
- </dict>
625
- <key>124F2AA516FAAADC00865092</key>
626
- <dict>
627
- <key>fileRef</key>
628
- <string>124F2AA416FAAADC00865092</string>
629
- <key>isa</key>
630
- <string>PBXBuildFile</string>
631
- </dict>
632
- <key>124F2AA616FAAADC00865092</key>
633
- <dict>
634
- <key>buildSettings</key>
635
- <dict>
636
- <key>ALWAYS_SEARCH_USER_PATHS</key>
637
- <string>NO</string>
638
- <key>CLANG_CXX_LANGUAGE_STANDARD</key>
639
- <string>gnu++0x</string>
640
- <key>CLANG_CXX_LIBRARY</key>
641
- <string>libc++</string>
642
- <key>CLANG_ENABLE_OBJC_ARC</key>
643
- <string>YES</string>
644
- <key>CLANG_WARN_CONSTANT_CONVERSION</key>
645
- <string>YES</string>
646
- <key>CLANG_WARN_EMPTY_BODY</key>
647
- <string>YES</string>
648
- <key>CLANG_WARN_ENUM_CONVERSION</key>
649
- <string>YES</string>
650
- <key>CLANG_WARN_INT_CONVERSION</key>
651
- <string>YES</string>
652
- <key>CLANG_WARN__DUPLICATE_METHOD_MATCH</key>
653
- <string>YES</string>
654
- <key>CODE_SIGN_IDENTITY[sdk=iphoneos*]</key>
655
- <string>iPhone Developer</string>
656
- <key>COPY_PHASE_STRIP</key>
657
- <string>NO</string>
658
- <key>GCC_C_LANGUAGE_STANDARD</key>
659
- <string>gnu99</string>
660
- <key>GCC_DYNAMIC_NO_PIC</key>
661
- <string>NO</string>
662
- <key>GCC_OPTIMIZATION_LEVEL</key>
663
- <string>0</string>
664
- <key>GCC_PREPROCESSOR_DEFINITIONS</key>
665
- <array>
666
- <string>DEBUG=1</string>
667
- <string>$(inherited)</string>
668
- </array>
669
- <key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
670
- <string>NO</string>
671
- <key>GCC_WARN_ABOUT_RETURN_TYPE</key>
672
- <string>YES</string>
673
- <key>GCC_WARN_UNINITIALIZED_AUTOS</key>
674
- <string>YES</string>
675
- <key>GCC_WARN_UNUSED_VARIABLE</key>
676
- <string>YES</string>
677
- <key>IPHONEOS_DEPLOYMENT_TARGET</key>
678
- <string>6.1</string>
679
- <key>ONLY_ACTIVE_ARCH</key>
680
- <string>YES</string>
681
- <key>SDKROOT</key>
682
- <string>iphoneos</string>
683
- <key>TARGETED_DEVICE_FAMILY</key>
684
- <string>1,2</string>
685
- </dict>
686
- <key>isa</key>
687
- <string>XCBuildConfiguration</string>
688
- <key>name</key>
689
- <string>Debug</string>
690
- </dict>
691
- <key>124F2AA716FAAADC00865092</key>
692
- <dict>
693
- <key>buildSettings</key>
694
- <dict>
695
- <key>ALWAYS_SEARCH_USER_PATHS</key>
696
- <string>NO</string>
697
- <key>CLANG_CXX_LANGUAGE_STANDARD</key>
698
- <string>gnu++0x</string>
699
- <key>CLANG_CXX_LIBRARY</key>
700
- <string>libc++</string>
701
- <key>CLANG_ENABLE_OBJC_ARC</key>
702
- <string>YES</string>
703
- <key>CLANG_WARN_CONSTANT_CONVERSION</key>
704
- <string>YES</string>
705
- <key>CLANG_WARN_EMPTY_BODY</key>
706
- <string>YES</string>
707
- <key>CLANG_WARN_ENUM_CONVERSION</key>
708
- <string>YES</string>
709
- <key>CLANG_WARN_INT_CONVERSION</key>
710
- <string>YES</string>
711
- <key>CLANG_WARN__DUPLICATE_METHOD_MATCH</key>
712
- <string>YES</string>
713
- <key>CODE_SIGN_IDENTITY[sdk=iphoneos*]</key>
714
- <string>iPhone Developer</string>
715
- <key>COPY_PHASE_STRIP</key>
716
- <string>YES</string>
717
- <key>GCC_C_LANGUAGE_STANDARD</key>
718
- <string>gnu99</string>
719
- <key>GCC_WARN_ABOUT_RETURN_TYPE</key>
720
- <string>YES</string>
721
- <key>GCC_WARN_UNINITIALIZED_AUTOS</key>
722
- <string>YES</string>
723
- <key>GCC_WARN_UNUSED_VARIABLE</key>
724
- <string>YES</string>
725
- <key>IPHONEOS_DEPLOYMENT_TARGET</key>
726
- <string>6.1</string>
727
- <key>OTHER_CFLAGS</key>
728
- <string>-DNS_BLOCK_ASSERTIONS=1</string>
729
- <key>SDKROOT</key>
730
- <string>iphoneos</string>
731
- <key>TARGETED_DEVICE_FAMILY</key>
732
- <string>1,2</string>
733
- <key>VALIDATE_PRODUCT</key>
734
- <string>YES</string>
735
- </dict>
736
- <key>isa</key>
737
- <string>XCBuildConfiguration</string>
738
- <key>name</key>
739
- <string>Release</string>
740
- </dict>
741
- <key>124F2AA816FAAADC00865092</key>
742
- <dict>
743
- <key>buildConfigurations</key>
744
- <array>
745
- <string>124F2AA916FAAADC00865092</string>
746
- <string>124F2AAA16FAAADC00865092</string>
747
- </array>
748
- <key>defaultConfigurationIsVisible</key>
749
- <string>0</string>
750
- <key>isa</key>
751
- <string>XCConfigurationList</string>
752
- </dict>
753
- <key>124F2AA916FAAADC00865092</key>
754
- <dict>
755
- <key>buildSettings</key>
756
- <dict>
757
- <key>GCC_PRECOMPILE_PREFIX_HEADER</key>
758
- <string>YES</string>
759
- <key>GCC_PREFIX_HEADER</key>
760
- <string>FurterApp/FurterApp-Prefix.pch</string>
761
- <key>INFOPLIST_FILE</key>
762
- <string>FurterApp/FurterApp-Info.plist</string>
763
- <key>LIBRARY_SEARCH_PATHS</key>
764
- <array>
765
- <string>$(inherited)</string>
766
- <string>$(FRANK_LIBRARY_SEARCH_PATHS)</string>
767
- </array>
768
- <key>OTHER_LDFLAGS</key>
769
- <array>
770
- <string>$(inherited)</string>
771
- <string>$(FRANK_LDFLAGS)</string>
772
- </array>
773
- <key>PRODUCT_NAME</key>
774
- <string>$(TARGET_NAME)</string>
775
- <key>WRAPPER_EXTENSION</key>
776
- <string>app</string>
777
- </dict>
778
- <key>isa</key>
779
- <string>XCBuildConfiguration</string>
780
- <key>name</key>
781
- <string>Debug</string>
782
- </dict>
783
- <key>124F2AAA16FAAADC00865092</key>
784
- <dict>
785
- <key>buildSettings</key>
786
- <dict>
787
- <key>GCC_PRECOMPILE_PREFIX_HEADER</key>
788
- <string>YES</string>
789
- <key>GCC_PREFIX_HEADER</key>
790
- <string>FurterApp/FurterApp-Prefix.pch</string>
791
- <key>INFOPLIST_FILE</key>
792
- <string>FurterApp/FurterApp-Info.plist</string>
793
- <key>PRODUCT_NAME</key>
794
- <string>$(TARGET_NAME)</string>
795
- <key>WRAPPER_EXTENSION</key>
796
- <string>app</string>
797
- </dict>
798
- <key>isa</key>
799
- <string>XCBuildConfiguration</string>
800
- <key>name</key>
801
- <string>Release</string>
802
- </dict>
803
- </dict>
804
- <key>rootObject</key>
805
- <string>124F2A7216FAAADC00865092</string>
806
- </dict>
807
- </plist>
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 124F2A7E16FAAADC00865092 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 124F2A7D16FAAADC00865092 /* UIKit.framework */; };
11
+ 124F2A8016FAAADC00865092 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 124F2A7F16FAAADC00865092 /* Foundation.framework */; };
12
+ 124F2A8216FAAADC00865092 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 124F2A8116FAAADC00865092 /* CoreGraphics.framework */; };
13
+ 124F2A8416FAAADC00865092 /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 124F2A8316FAAADC00865092 /* CoreData.framework */; };
14
+ 124F2A8A16FAAADC00865092 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 124F2A8816FAAADC00865092 /* InfoPlist.strings */; };
15
+ 124F2A8C16FAAADC00865092 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 124F2A8B16FAAADC00865092 /* main.m */; };
16
+ 124F2A9016FAAADC00865092 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 124F2A8F16FAAADC00865092 /* AppDelegate.m */; };
17
+ 124F2A9216FAAADC00865092 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 124F2A9116FAAADC00865092 /* Default.png */; };
18
+ 124F2A9416FAAADC00865092 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 124F2A9316FAAADC00865092 /* Default@2x.png */; };
19
+ 124F2A9616FAAADC00865092 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 124F2A9516FAAADC00865092 /* Default-568h@2x.png */; };
20
+ 124F2A9916FAAADC00865092 /* MainStoryboard_iPhone.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 124F2A9716FAAADC00865092 /* MainStoryboard_iPhone.storyboard */; };
21
+ 124F2A9C16FAAADC00865092 /* MainStoryboard_iPad.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 124F2A9A16FAAADC00865092 /* MainStoryboard_iPad.storyboard */; };
22
+ 124F2A9F16FAAADC00865092 /* FurterApp.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = 124F2A9D16FAAADC00865092 /* FurterApp.xcdatamodeld */; };
23
+ 124F2AA216FAAADC00865092 /* MasterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 124F2AA116FAAADC00865092 /* MasterViewController.m */; };
24
+ 124F2AA516FAAADC00865092 /* DetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 124F2AA416FAAADC00865092 /* DetailViewController.m */; };
25
+ B8FBC45C173F4D6A00F4BE67 /* TablesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B8FBC45A173F4D6A00F4BE67 /* TablesViewController.m */; };
26
+ B8FBC45D173F4D6A00F4BE67 /* TablesViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = B8FBC45B173F4D6A00F4BE67 /* TablesViewController.xib */; };
27
+ /* End PBXBuildFile section */
28
+
29
+ /* Begin PBXFileReference section */
30
+ 124F2A7A16FAAADC00865092 /* FurterApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FurterApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
31
+ 124F2A7D16FAAADC00865092 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
32
+ 124F2A7F16FAAADC00865092 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
33
+ 124F2A8116FAAADC00865092 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
34
+ 124F2A8316FAAADC00865092 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
35
+ 124F2A8716FAAADC00865092 /* FurterApp-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "FurterApp-Info.plist"; sourceTree = "<group>"; };
36
+ 124F2A8916FAAADC00865092 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
37
+ 124F2A8B16FAAADC00865092 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
38
+ 124F2A8D16FAAADC00865092 /* FurterApp-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "FurterApp-Prefix.pch"; sourceTree = "<group>"; };
39
+ 124F2A8E16FAAADC00865092 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
40
+ 124F2A8F16FAAADC00865092 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
41
+ 124F2A9116FAAADC00865092 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
42
+ 124F2A9316FAAADC00865092 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
43
+ 124F2A9516FAAADC00865092 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
44
+ 124F2A9816FAAADC00865092 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = en; path = en.lproj/MainStoryboard_iPhone.storyboard; sourceTree = "<group>"; };
45
+ 124F2A9B16FAAADC00865092 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = en; path = en.lproj/MainStoryboard_iPad.storyboard; sourceTree = "<group>"; };
46
+ 124F2A9E16FAAADC00865092 /* FurterApp.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = FurterApp.xcdatamodel; sourceTree = "<group>"; };
47
+ 124F2AA016FAAADC00865092 /* MasterViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MasterViewController.h; sourceTree = "<group>"; };
48
+ 124F2AA116FAAADC00865092 /* MasterViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MasterViewController.m; sourceTree = "<group>"; };
49
+ 124F2AA316FAAADC00865092 /* DetailViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailViewController.h; sourceTree = "<group>"; };
50
+ 124F2AA416FAAADC00865092 /* DetailViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailViewController.m; sourceTree = "<group>"; };
51
+ B8FBC459173F4D6A00F4BE67 /* TablesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TablesViewController.h; sourceTree = "<group>"; };
52
+ B8FBC45A173F4D6A00F4BE67 /* TablesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TablesViewController.m; sourceTree = "<group>"; };
53
+ B8FBC45B173F4D6A00F4BE67 /* TablesViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TablesViewController.xib; sourceTree = "<group>"; };
54
+ /* End PBXFileReference section */
55
+
56
+ /* Begin PBXFrameworksBuildPhase section */
57
+ 124F2A7716FAAADC00865092 /* Frameworks */ = {
58
+ isa = PBXFrameworksBuildPhase;
59
+ buildActionMask = 2147483647;
60
+ files = (
61
+ 124F2A7E16FAAADC00865092 /* UIKit.framework in Frameworks */,
62
+ 124F2A8016FAAADC00865092 /* Foundation.framework in Frameworks */,
63
+ 124F2A8216FAAADC00865092 /* CoreGraphics.framework in Frameworks */,
64
+ 124F2A8416FAAADC00865092 /* CoreData.framework in Frameworks */,
65
+ );
66
+ runOnlyForDeploymentPostprocessing = 0;
67
+ };
68
+ /* End PBXFrameworksBuildPhase section */
69
+
70
+ /* Begin PBXGroup section */
71
+ 124F2A7116FAAADC00865092 = {
72
+ isa = PBXGroup;
73
+ children = (
74
+ B8FBC459173F4D6A00F4BE67 /* TablesViewController.h */,
75
+ B8FBC45A173F4D6A00F4BE67 /* TablesViewController.m */,
76
+ B8FBC45B173F4D6A00F4BE67 /* TablesViewController.xib */,
77
+ 124F2A8516FAAADC00865092 /* FurterApp */,
78
+ 124F2A7C16FAAADC00865092 /* Frameworks */,
79
+ 124F2A7B16FAAADC00865092 /* Products */,
80
+ );
81
+ sourceTree = "<group>";
82
+ };
83
+ 124F2A7B16FAAADC00865092 /* Products */ = {
84
+ isa = PBXGroup;
85
+ children = (
86
+ 124F2A7A16FAAADC00865092 /* FurterApp.app */,
87
+ );
88
+ name = Products;
89
+ sourceTree = "<group>";
90
+ };
91
+ 124F2A7C16FAAADC00865092 /* Frameworks */ = {
92
+ isa = PBXGroup;
93
+ children = (
94
+ 124F2A7D16FAAADC00865092 /* UIKit.framework */,
95
+ 124F2A7F16FAAADC00865092 /* Foundation.framework */,
96
+ 124F2A8116FAAADC00865092 /* CoreGraphics.framework */,
97
+ 124F2A8316FAAADC00865092 /* CoreData.framework */,
98
+ );
99
+ name = Frameworks;
100
+ sourceTree = "<group>";
101
+ };
102
+ 124F2A8516FAAADC00865092 /* FurterApp */ = {
103
+ isa = PBXGroup;
104
+ children = (
105
+ 124F2A8E16FAAADC00865092 /* AppDelegate.h */,
106
+ 124F2A8F16FAAADC00865092 /* AppDelegate.m */,
107
+ 124F2A9716FAAADC00865092 /* MainStoryboard_iPhone.storyboard */,
108
+ 124F2A9A16FAAADC00865092 /* MainStoryboard_iPad.storyboard */,
109
+ 124F2AA016FAAADC00865092 /* MasterViewController.h */,
110
+ 124F2AA116FAAADC00865092 /* MasterViewController.m */,
111
+ 124F2AA316FAAADC00865092 /* DetailViewController.h */,
112
+ 124F2AA416FAAADC00865092 /* DetailViewController.m */,
113
+ 124F2A9D16FAAADC00865092 /* FurterApp.xcdatamodeld */,
114
+ 124F2A8616FAAADC00865092 /* Supporting Files */,
115
+ );
116
+ path = FurterApp;
117
+ sourceTree = "<group>";
118
+ };
119
+ 124F2A8616FAAADC00865092 /* Supporting Files */ = {
120
+ isa = PBXGroup;
121
+ children = (
122
+ 124F2A8716FAAADC00865092 /* FurterApp-Info.plist */,
123
+ 124F2A8816FAAADC00865092 /* InfoPlist.strings */,
124
+ 124F2A8B16FAAADC00865092 /* main.m */,
125
+ 124F2A8D16FAAADC00865092 /* FurterApp-Prefix.pch */,
126
+ 124F2A9116FAAADC00865092 /* Default.png */,
127
+ 124F2A9316FAAADC00865092 /* Default@2x.png */,
128
+ 124F2A9516FAAADC00865092 /* Default-568h@2x.png */,
129
+ );
130
+ name = "Supporting Files";
131
+ sourceTree = "<group>";
132
+ };
133
+ /* End PBXGroup section */
134
+
135
+ /* Begin PBXNativeTarget section */
136
+ 124F2A7916FAAADC00865092 /* FurterApp */ = {
137
+ isa = PBXNativeTarget;
138
+ buildConfigurationList = 124F2AA816FAAADC00865092 /* Build configuration list for PBXNativeTarget "FurterApp" */;
139
+ buildPhases = (
140
+ 124F2A7616FAAADC00865092 /* Sources */,
141
+ 124F2A7716FAAADC00865092 /* Frameworks */,
142
+ 124F2A7816FAAADC00865092 /* Resources */,
143
+ );
144
+ buildRules = (
145
+ );
146
+ dependencies = (
147
+ );
148
+ name = FurterApp;
149
+ productName = FurterApp;
150
+ productReference = 124F2A7A16FAAADC00865092 /* FurterApp.app */;
151
+ productType = "com.apple.product-type.application";
152
+ };
153
+ /* End PBXNativeTarget section */
154
+
155
+ /* Begin PBXProject section */
156
+ 124F2A7216FAAADC00865092 /* Project object */ = {
157
+ isa = PBXProject;
158
+ attributes = {
159
+ LastUpgradeCheck = 0460;
160
+ ORGANIZATIONNAME = "Levi Wilson";
161
+ };
162
+ buildConfigurationList = 124F2A7516FAAADC00865092 /* Build configuration list for PBXProject "FurterApp" */;
163
+ compatibilityVersion = "Xcode 3.2";
164
+ developmentRegion = English;
165
+ hasScannedForEncodings = 0;
166
+ knownRegions = (
167
+ en,
168
+ );
169
+ mainGroup = 124F2A7116FAAADC00865092;
170
+ productRefGroup = 124F2A7B16FAAADC00865092 /* Products */;
171
+ projectDirPath = "";
172
+ projectRoot = "";
173
+ targets = (
174
+ 124F2A7916FAAADC00865092 /* FurterApp */,
175
+ );
176
+ };
177
+ /* End PBXProject section */
178
+
179
+ /* Begin PBXResourcesBuildPhase section */
180
+ 124F2A7816FAAADC00865092 /* Resources */ = {
181
+ isa = PBXResourcesBuildPhase;
182
+ buildActionMask = 2147483647;
183
+ files = (
184
+ 124F2A8A16FAAADC00865092 /* InfoPlist.strings in Resources */,
185
+ 124F2A9216FAAADC00865092 /* Default.png in Resources */,
186
+ 124F2A9416FAAADC00865092 /* Default@2x.png in Resources */,
187
+ 124F2A9616FAAADC00865092 /* Default-568h@2x.png in Resources */,
188
+ 124F2A9916FAAADC00865092 /* MainStoryboard_iPhone.storyboard in Resources */,
189
+ 124F2A9C16FAAADC00865092 /* MainStoryboard_iPad.storyboard in Resources */,
190
+ B8FBC45D173F4D6A00F4BE67 /* TablesViewController.xib in Resources */,
191
+ );
192
+ runOnlyForDeploymentPostprocessing = 0;
193
+ };
194
+ /* End PBXResourcesBuildPhase section */
195
+
196
+ /* Begin PBXSourcesBuildPhase section */
197
+ 124F2A7616FAAADC00865092 /* Sources */ = {
198
+ isa = PBXSourcesBuildPhase;
199
+ buildActionMask = 2147483647;
200
+ files = (
201
+ 124F2A8C16FAAADC00865092 /* main.m in Sources */,
202
+ 124F2A9016FAAADC00865092 /* AppDelegate.m in Sources */,
203
+ 124F2A9F16FAAADC00865092 /* FurterApp.xcdatamodeld in Sources */,
204
+ 124F2AA216FAAADC00865092 /* MasterViewController.m in Sources */,
205
+ 124F2AA516FAAADC00865092 /* DetailViewController.m in Sources */,
206
+ B8FBC45C173F4D6A00F4BE67 /* TablesViewController.m in Sources */,
207
+ );
208
+ runOnlyForDeploymentPostprocessing = 0;
209
+ };
210
+ /* End PBXSourcesBuildPhase section */
211
+
212
+ /* Begin PBXVariantGroup section */
213
+ 124F2A8816FAAADC00865092 /* InfoPlist.strings */ = {
214
+ isa = PBXVariantGroup;
215
+ children = (
216
+ 124F2A8916FAAADC00865092 /* en */,
217
+ );
218
+ name = InfoPlist.strings;
219
+ sourceTree = "<group>";
220
+ };
221
+ 124F2A9716FAAADC00865092 /* MainStoryboard_iPhone.storyboard */ = {
222
+ isa = PBXVariantGroup;
223
+ children = (
224
+ 124F2A9816FAAADC00865092 /* en */,
225
+ );
226
+ name = MainStoryboard_iPhone.storyboard;
227
+ sourceTree = "<group>";
228
+ };
229
+ 124F2A9A16FAAADC00865092 /* MainStoryboard_iPad.storyboard */ = {
230
+ isa = PBXVariantGroup;
231
+ children = (
232
+ 124F2A9B16FAAADC00865092 /* en */,
233
+ );
234
+ name = MainStoryboard_iPad.storyboard;
235
+ sourceTree = "<group>";
236
+ };
237
+ /* End PBXVariantGroup section */
238
+
239
+ /* Begin XCBuildConfiguration section */
240
+ 124F2AA616FAAADC00865092 /* Debug */ = {
241
+ isa = XCBuildConfiguration;
242
+ buildSettings = {
243
+ ALWAYS_SEARCH_USER_PATHS = NO;
244
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
245
+ CLANG_CXX_LIBRARY = "libc++";
246
+ CLANG_ENABLE_OBJC_ARC = YES;
247
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
248
+ CLANG_WARN_EMPTY_BODY = YES;
249
+ CLANG_WARN_ENUM_CONVERSION = YES;
250
+ CLANG_WARN_INT_CONVERSION = YES;
251
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
252
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
253
+ COPY_PHASE_STRIP = NO;
254
+ GCC_C_LANGUAGE_STANDARD = gnu99;
255
+ GCC_DYNAMIC_NO_PIC = NO;
256
+ GCC_OPTIMIZATION_LEVEL = 0;
257
+ GCC_PREPROCESSOR_DEFINITIONS = (
258
+ "DEBUG=1",
259
+ "$(inherited)",
260
+ );
261
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
262
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
263
+ GCC_WARN_UNINITIALIZED_AUTOS = YES;
264
+ GCC_WARN_UNUSED_VARIABLE = YES;
265
+ IPHONEOS_DEPLOYMENT_TARGET = 6.1;
266
+ ONLY_ACTIVE_ARCH = YES;
267
+ SDKROOT = iphoneos;
268
+ TARGETED_DEVICE_FAMILY = "1,2";
269
+ };
270
+ name = Debug;
271
+ };
272
+ 124F2AA716FAAADC00865092 /* Release */ = {
273
+ isa = XCBuildConfiguration;
274
+ buildSettings = {
275
+ ALWAYS_SEARCH_USER_PATHS = NO;
276
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
277
+ CLANG_CXX_LIBRARY = "libc++";
278
+ CLANG_ENABLE_OBJC_ARC = YES;
279
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
280
+ CLANG_WARN_EMPTY_BODY = YES;
281
+ CLANG_WARN_ENUM_CONVERSION = YES;
282
+ CLANG_WARN_INT_CONVERSION = YES;
283
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
284
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
285
+ COPY_PHASE_STRIP = YES;
286
+ GCC_C_LANGUAGE_STANDARD = gnu99;
287
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
288
+ GCC_WARN_UNINITIALIZED_AUTOS = YES;
289
+ GCC_WARN_UNUSED_VARIABLE = YES;
290
+ IPHONEOS_DEPLOYMENT_TARGET = 6.1;
291
+ OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
292
+ SDKROOT = iphoneos;
293
+ TARGETED_DEVICE_FAMILY = "1,2";
294
+ VALIDATE_PRODUCT = YES;
295
+ };
296
+ name = Release;
297
+ };
298
+ 124F2AA916FAAADC00865092 /* Debug */ = {
299
+ isa = XCBuildConfiguration;
300
+ buildSettings = {
301
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
302
+ GCC_PREFIX_HEADER = "FurterApp/FurterApp-Prefix.pch";
303
+ INFOPLIST_FILE = "FurterApp/FurterApp-Info.plist";
304
+ LIBRARY_SEARCH_PATHS = (
305
+ "$(inherited)",
306
+ "$(FRANK_LIBRARY_SEARCH_PATHS)",
307
+ );
308
+ OTHER_LDFLAGS = (
309
+ "$(inherited)",
310
+ "$(FRANK_LDFLAGS)",
311
+ );
312
+ PRODUCT_NAME = "$(TARGET_NAME)";
313
+ WRAPPER_EXTENSION = app;
314
+ };
315
+ name = Debug;
316
+ };
317
+ 124F2AAA16FAAADC00865092 /* Release */ = {
318
+ isa = XCBuildConfiguration;
319
+ buildSettings = {
320
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
321
+ GCC_PREFIX_HEADER = "FurterApp/FurterApp-Prefix.pch";
322
+ INFOPLIST_FILE = "FurterApp/FurterApp-Info.plist";
323
+ PRODUCT_NAME = "$(TARGET_NAME)";
324
+ WRAPPER_EXTENSION = app;
325
+ };
326
+ name = Release;
327
+ };
328
+ /* End XCBuildConfiguration section */
329
+
330
+ /* Begin XCConfigurationList section */
331
+ 124F2A7516FAAADC00865092 /* Build configuration list for PBXProject "FurterApp" */ = {
332
+ isa = XCConfigurationList;
333
+ buildConfigurations = (
334
+ 124F2AA616FAAADC00865092 /* Debug */,
335
+ 124F2AA716FAAADC00865092 /* Release */,
336
+ );
337
+ defaultConfigurationIsVisible = 0;
338
+ defaultConfigurationName = Release;
339
+ };
340
+ 124F2AA816FAAADC00865092 /* Build configuration list for PBXNativeTarget "FurterApp" */ = {
341
+ isa = XCConfigurationList;
342
+ buildConfigurations = (
343
+ 124F2AA916FAAADC00865092 /* Debug */,
344
+ 124F2AAA16FAAADC00865092 /* Release */,
345
+ );
346
+ defaultConfigurationIsVisible = 0;
347
+ defaultConfigurationName = Release;
348
+ };
349
+ /* End XCConfigurationList section */
350
+
351
+ /* Begin XCVersionGroup section */
352
+ 124F2A9D16FAAADC00865092 /* FurterApp.xcdatamodeld */ = {
353
+ isa = XCVersionGroup;
354
+ children = (
355
+ 124F2A9E16FAAADC00865092 /* FurterApp.xcdatamodel */,
356
+ );
357
+ currentVersion = 124F2A9E16FAAADC00865092 /* FurterApp.xcdatamodel */;
358
+ path = FurterApp.xcdatamodeld;
359
+ sourceTree = "<group>";
360
+ versionGroupType = wrapper.xcdatamodel;
361
+ };
362
+ /* End XCVersionGroup section */
363
+ };
364
+ rootObject = 124F2A7216FAAADC00865092 /* Project object */;
365
+ }