furter 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. data/.gitignore +21 -0
  2. data/.rspec +2 -0
  3. data/.travis.yml +2 -0
  4. data/Changelog +3 -0
  5. data/Gemfile +3 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +25 -0
  8. data/Rakefile +30 -0
  9. data/app/FurterApp/Frank/features/my_first.feature +12 -0
  10. data/app/FurterApp/Frank/features/step_definitions/launch_steps.rb +20 -0
  11. data/app/FurterApp/Frank/features/support/env.rb +8 -0
  12. data/app/FurterApp/Frank/frankify.xcconfig +6 -0
  13. data/app/FurterApp/Frank/libCocoaAsyncSocket.a +0 -0
  14. data/app/FurterApp/Frank/libCocoaAsyncSocketMac.a +0 -0
  15. data/app/FurterApp/Frank/libCocoaHTTPServer.a +0 -0
  16. data/app/FurterApp/Frank/libCocoaHTTPServerMac.a +0 -0
  17. data/app/FurterApp/Frank/libCocoaLumberjack.a +0 -0
  18. data/app/FurterApp/Frank/libCocoaLumberjackMac.a +0 -0
  19. data/app/FurterApp/Frank/libFrank.a +0 -0
  20. data/app/FurterApp/Frank/libFrankMac.a +0 -0
  21. data/app/FurterApp/Frank/libShelley.a +0 -0
  22. data/app/FurterApp/Frank/libShelleyMac.a +0 -0
  23. data/app/FurterApp/FurterApp.xcodeproj/project.pbxproj +807 -0
  24. data/app/FurterApp/FurterApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  25. data/app/FurterApp/FurterApp.xcodeproj/project.xcworkspace/xcuserdata/lwilson.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  26. data/app/FurterApp/FurterApp.xcodeproj/xcuserdata/lwilson.xcuserdatad/xcschemes/FurterApp.xcscheme +86 -0
  27. data/app/FurterApp/FurterApp.xcodeproj/xcuserdata/lwilson.xcuserdatad/xcschemes/xcschememanagement.plist +22 -0
  28. data/app/FurterApp/FurterApp/AppDelegate.h +22 -0
  29. data/app/FurterApp/FurterApp/AppDelegate.m +161 -0
  30. data/app/FurterApp/FurterApp/Default-568h@2x.png +0 -0
  31. data/app/FurterApp/FurterApp/Default.png +0 -0
  32. data/app/FurterApp/FurterApp/Default@2x.png +0 -0
  33. data/app/FurterApp/FurterApp/DetailViewController.h +23 -0
  34. data/app/FurterApp/FurterApp/DetailViewController.m +80 -0
  35. data/app/FurterApp/FurterApp/FurterApp-Info.plist +59 -0
  36. data/app/FurterApp/FurterApp/FurterApp-Prefix.pch +15 -0
  37. data/app/FurterApp/FurterApp/FurterApp.xcdatamodeld/.xccurrentversion +8 -0
  38. data/app/FurterApp/FurterApp/FurterApp.xcdatamodeld/FurterApp.xcdatamodel/contents +9 -0
  39. data/app/FurterApp/FurterApp/MasterViewController.h +22 -0
  40. data/app/FurterApp/FurterApp/MasterViewController.m +235 -0
  41. data/app/FurterApp/FurterApp/en.lproj/InfoPlist.strings +2 -0
  42. data/app/FurterApp/FurterApp/en.lproj/MainStoryboard_iPad.storyboard +260 -0
  43. data/app/FurterApp/FurterApp/en.lproj/MainStoryboard_iPhone.storyboard +129 -0
  44. data/app/FurterApp/FurterApp/main.m +18 -0
  45. data/cucumber.yml +2 -0
  46. data/features/button.feature +12 -0
  47. data/features/label.feature +10 -0
  48. data/features/navigation.feature +5 -0
  49. data/features/step_definitions/button_steps.rb +7 -0
  50. data/features/step_definitions/label_steps.rb +8 -0
  51. data/features/step_definitions/navigation_steps.rb +7 -0
  52. data/features/step_definitions/switches_steps.rb +12 -0
  53. data/features/step_definitions/text_steps.rb +25 -0
  54. data/features/support/core_ext/string.rb +9 -0
  55. data/features/support/env.rb +25 -0
  56. data/features/support/hooks.rb +3 -0
  57. data/features/support/screens/detail.rb +15 -0
  58. data/features/support/screens/elsewhere_page.rb +7 -0
  59. data/features/switches.feature +7 -0
  60. data/features/text.feature +15 -0
  61. data/furter.gemspec +26 -0
  62. data/lib/furter.rb +53 -0
  63. data/lib/furter/accessors.rb +87 -0
  64. data/lib/furter/accessors/alert_button.rb +18 -0
  65. data/lib/furter/accessors/button.rb +17 -0
  66. data/lib/furter/accessors/label.rb +13 -0
  67. data/lib/furter/accessors/map_pin.rb +18 -0
  68. data/lib/furter/accessors/switch.rb +20 -0
  69. data/lib/furter/accessors/table.rb +15 -0
  70. data/lib/furter/accessors/table_item.rb +10 -0
  71. data/lib/furter/accessors/text.rb +27 -0
  72. data/lib/furter/accessors/view.rb +46 -0
  73. data/lib/furter/navigation.rb +25 -0
  74. data/lib/furter/version.rb +3 -0
  75. data/spec/lib/furter/accessors/button_spec.rb +23 -0
  76. data/spec/lib/furter/accessors/label_spec.rb +24 -0
  77. data/spec/lib/furter/accessors/switch_spec.rb +28 -0
  78. data/spec/lib/furter/accessors/text_spec.rb +39 -0
  79. data/spec/lib/furter/accessors/view_spec.rb +43 -0
  80. data/spec/lib/furter/accessors_spec.rb +116 -0
  81. data/spec/spec_helper.rb +18 -0
  82. metadata +234 -0
data/.gitignore ADDED
@@ -0,0 +1,21 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .idea/
5
+ .config
6
+ .yardoc
7
+ Gemfile.lock
8
+ InstalledFiles
9
+ _yardoc
10
+ coverage
11
+ doc/
12
+ lib/bundler/man
13
+ pkg
14
+ rdoc
15
+ spec/reports
16
+ test/tmp
17
+ test/version_tmp
18
+ tmp
19
+ build/
20
+ frankified_build/
21
+ frank_static_resources.bundle/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format documentation
data/.travis.yml ADDED
@@ -0,0 +1,2 @@
1
+ language: ruby
2
+ rvm: 1.9.3
data/Changelog ADDED
@@ -0,0 +1,3 @@
1
+ === Version 0.3 / 2013-04-03
2
+ Initial release with support for text, label, button, view, alert_button,
3
+ table, table_item, map_pin and switch controls
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 Levi Wilson
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # Furter
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'furter', :git => 'https://github.com/leviwilson/furter.git'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ ## Usage
16
+
17
+ TODO: Write usage instructions here
18
+
19
+ ## Contributing
20
+
21
+ 1. Fork it
22
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
23
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
24
+ 4. Push to the branch (`git push origin my-new-feature`)
25
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,30 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rubygems'
3
+ require 'cucumber'
4
+ require 'cucumber/rake/task'
5
+ require 'rspec/core/rake_task'
6
+
7
+ desc "Run cucumber using the default profile"
8
+ Cucumber::Rake::Task.new(:features) do |t|
9
+ t.profile = 'default'
10
+ end
11
+
12
+ desc "Run cucumber using the wip profile"
13
+ Cucumber::Rake::Task.new(:wip) do |t|
14
+ t.profile = 'wip'
15
+ end
16
+
17
+ desc "Run the specs"
18
+ RSpec::Core::RakeTask.new(:spec)
19
+
20
+ task :default => :spec
21
+
22
+ desc "Build the FurterApp and run both specs and features"
23
+ task :test => [:build_app, :spec, :features]
24
+
25
+ desc "Build the FurterApp"
26
+ task :build_app do
27
+ Dir.chdir('app/FurterApp') do |working_directory|
28
+ `frank build`
29
+ end
30
+ end
@@ -0,0 +1,12 @@
1
+ Feature:
2
+ As an iOS developer
3
+ I want to have a sample feature file
4
+ So I can see what my next step is in the wonderful world of Frank/Cucumber testing
5
+
6
+ Scenario:
7
+ Rotating the simulator for demonstration purposes
8
+ Given I launch the app
9
+ Given the device is in landscape orientation
10
+ Given the device is in portrait orientation
11
+ Given the device is in landscape orientation
12
+ Given the device is in portrait orientation
@@ -0,0 +1,20 @@
1
+ def app_path
2
+ ENV['APP_BUNDLE_PATH'] || (defined?(APP_BUNDLE_PATH) && APP_BUNDLE_PATH)
3
+ end
4
+
5
+ Given /^I launch the app$/ do
6
+ # latest sdk and iphone by default
7
+ launch_app app_path
8
+ end
9
+
10
+ Given /^I launch the app using iOS (\d\.\d)$/ do |sdk|
11
+ # You can grab a list of the installed SDK with sim_launcher
12
+ # > run sim_launcher from the command line
13
+ # > open a browser to http://localhost:8881/showsdks
14
+ # > use one of the sdk you see in parenthesis (e.g. 4.2)
15
+ launch_app app_path, sdk
16
+ end
17
+
18
+ Given /^I launch the app using iOS (\d\.\d) and the (iphone|ipad) simulator$/ do |sdk, version|
19
+ launch_app app_path, sdk, version
20
+ end
@@ -0,0 +1,8 @@
1
+ require 'frank-cucumber'
2
+
3
+ # UIQuery is deprecated. Please use the shelley selector engine.
4
+ Frank::Cucumber::FrankHelper.use_shelley_from_now_on
5
+
6
+ # This constant must be set to the full, absolute path for your Frankified target's app bundle.
7
+ # See the "Given I launch the app" step definition in launch_steps.rb for more details
8
+ APP_BUNDLE_PATH = File.expand_path( '../../../frankified_build/Frankified.app', __FILE__ )
@@ -0,0 +1,6 @@
1
+ INSTALL_PATH = /./
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
5
+
6
+ GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = FRANKIFIED
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,807 @@
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>