nano-store 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -1,4 +1,5 @@
1
1
  vendor/*/build-*
2
+ vendor/Pods/Pods.xcodeproj/project.pbxproj
2
3
  pkg/*
3
4
  .repl_history
4
5
  build
data/README.md CHANGED
@@ -94,6 +94,9 @@ users = User.find(:name, NSFEqualTo, "Bob")
94
94
  users = User.find(:name => "Bob")
95
95
  users = User.find(:name => { NSFEqualTo => "Ronald" })
96
96
  users = User.find(:name => { NSFEqualTo => "Ronald" }, :age => { NSFGreaterThan => 50 })
97
+
98
+ # Optionally sort the result with additional hash parameters
99
+ users = User.find({:age => { NSFGreaterThan => 10 }}, {:sort => {:age => 'DESC'}})
97
100
  ````
98
101
 
99
102
  ### Update
data/Rakefile CHANGED
@@ -1,3 +1,4 @@
1
+ require "bundler/gem_tasks"
1
2
  $:.unshift("/Library/RubyMotion/lib")
2
3
  require 'motion/project'
3
4
  require 'motion-cocoapods'
@@ -11,11 +12,4 @@ Motion::Project::App.setup do |app|
11
12
  app.pods do
12
13
  dependency 'NanoStore'
13
14
  end
14
- end
15
-
16
- desc "Build the gem"
17
- task :gem do
18
- sh "bundle exec gem build nano-store.gemspec"
19
- sh "mkdir -p pkg"
20
- sh "mv *.gem pkg/"
21
15
  end
@@ -13,17 +13,31 @@ module NanoStore
13
13
  if arg[0].is_a?(Hash)
14
14
  # hash style
15
15
  options = arg[0]
16
+ if arg[1] && arg[1].is_a?(Hash)
17
+ sort_options = arg[1][:sort] || {}
18
+ else
19
+ sort_options = {}
20
+ end
16
21
  elsif arg[0] && arg[1] && arg[2]
17
22
  # standard way to find
18
23
  options = {arg[0] => {arg[1] => arg[2]}}
24
+ if arg[4] && arg[4].is_a?(Hash)
25
+ sort_options = arg[4][:sort] || {}
26
+ else
27
+ sort_options = {}
28
+ end
29
+ else
30
+ raise "unexpected parameters #{arg}"
19
31
  end
20
32
  search = NSFNanoSearch.searchWithStore(self.store)
21
33
  expressions = expressions_with_options(options)
22
- search.setExpressions(expressions)
34
+ sort_descriptors = sort_descriptor_with_options(sort_options)
35
+ search.expressions = expressions
36
+ search.sort = sort_descriptors
23
37
  error_ptr = Pointer.new(:id)
24
38
  searchResults = search.searchObjectsWithReturnType(NSFReturnObjects, error:error_ptr)
25
39
  raise NanoStoreError, error_ptr[0].description if error_ptr[0]
26
- searchResults.values
40
+ searchResults
27
41
  end
28
42
 
29
43
  # find model keys by criteria
@@ -39,13 +53,27 @@ module NanoStore
39
53
  if arg[0].is_a?(Hash)
40
54
  # hash style
41
55
  options = arg[0]
56
+ if arg[1] && arg[1].is_a?(Hash)
57
+ sort_options = arg[1][:sort] || {}
58
+ else
59
+ sort_options = {}
60
+ end
42
61
  elsif arg[0] && arg[1] && arg[2]
43
62
  # standard way to find
44
- options = {arg[0] => {arg[1] => arg[2]}}
63
+ options = {arg[0] => {arg[1] => arg[2]}}
64
+ if arg[4] && arg[4].is_a?(Hash)
65
+ sort_options = arg[4][:sort] || {}
66
+ else
67
+ sort_options = {}
68
+ end
69
+ else
70
+ raise "unexpected parameters #{arg}"
45
71
  end
46
72
  search = NSFNanoSearch.searchWithStore(self.store)
47
73
  expressions = expressions_with_options(options)
48
- search.setExpressions(expressions)
74
+ sort_descriptors = sort_descriptor_with_options(sort_options)
75
+ search.expressions = expressions
76
+ search.sort = sort_descriptors
49
77
  error_ptr = Pointer.new(:id)
50
78
  searchResults = search.searchObjectsWithReturnType(NSFReturnKeys, error:error_ptr)
51
79
  raise NanoStoreError, error_ptr[0].description if error_ptr[0]
@@ -72,5 +100,24 @@ module NanoStore
72
100
  end
73
101
  return expressions
74
102
  end
103
+
104
+ SORT_MAPPING = {
105
+ 'ASC' => true,
106
+ 'DESC' => false,
107
+ :ASC => true,
108
+ :DESC => false
109
+ }
110
+
111
+ def sort_descriptor_with_options(options)
112
+ sorter = options.collect do |opt_key, opt_val|
113
+ if opt_val.is_a?(TrueClass) || opt_val.is_a?(FalseClass)
114
+ NSFNanoSortDescriptor.alloc.initWithAttribute(opt_key.to_s, ascending:opt_val)
115
+ elsif SORT_MAPPING.keys.include?(opt_val)
116
+ NSFNanoSortDescriptor.alloc.initWithAttribute(opt_key.to_s, ascending:SORT_MAPPING[opt_val])
117
+ else
118
+ raise "unsupported sort parameters: #{opt_val}"
119
+ end
120
+ end
121
+ end
75
122
  end # module FinderMethods
76
123
  end # module NanoStore
@@ -1,3 +1,3 @@
1
1
  module NanoStore
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
data/spec/finder_spec.rb CHANGED
@@ -58,6 +58,34 @@ describe "Finder" do
58
58
  user = users.first
59
59
  user.name.should.be == "Ronald"
60
60
  end
61
+
62
+ it "sort search results" do
63
+ stub_user("Alan", 39, Time.now).save
64
+ stub_user("Cat", 29, Time.now).save
65
+ stub_user("Dan", 36, Time.now).save
66
+ stub_user("Ted", 18, Time.now).save
67
+ stub_user("Zidd", 59, Time.now).save
68
+ stub_user("Sarah", 49, Time.now).save
69
+
70
+ users = User.find({:age => { NSFGreaterThan => 1 }}, {:sort => {:age => true}})
71
+ users.size.should == 9
72
+ user = users.first
73
+ user.name.should.be == "Carl"
74
+ user.age.should.be == 4
75
+ user = users.last
76
+ user.name.should.be == "Zidd"
77
+ user.age.should.be == 59
78
+
79
+ users = User.find({:age => { NSFGreaterThan => 1 }}, {:sort => {:age => 'DESC'}})
80
+ users.size.should == 9
81
+ user = users.last
82
+ user.name.should.be == "Carl"
83
+ user.age.should.be == 4
84
+ user = users.first
85
+ user.name.should.be == "Zidd"
86
+ user.age.should.be == 59
87
+ end
88
+
61
89
 
62
90
  it "find object" do
63
91
  user = User.find(:name, NSFEqualTo, "Bob").first
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nano-store
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-05-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bubble-wrap
16
- requirement: &70283604287200 !ruby/object:Gem::Requirement
16
+ requirement: &70299631291380 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 0.1.1
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70283604287200
24
+ version_requirements: *70299631291380
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: motion-cocoapods
27
- requirement: &70283604286280 !ruby/object:Gem::Requirement
27
+ requirement: &70299631290160 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: 1.0.1
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70283604286280
35
+ version_requirements: *70299631290160
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: motion-redgreen
38
- requirement: &70283604285540 !ruby/object:Gem::Requirement
38
+ requirement: &70299631289480 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '0'
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *70283604285540
46
+ version_requirements: *70299631289480
47
47
  description: Wrapper for NanoStore, a lightweight schema-less key-value document database
48
48
  based on sqlite, for RubyMotion.
49
49
  email:
@@ -172,7 +172,6 @@ files:
172
172
  - vendor/Pods/Pods-resources.sh
173
173
  - vendor/Pods/Pods.bridgesupport
174
174
  - vendor/Pods/Pods.xcconfig
175
- - vendor/Pods/Pods.xcodeproj/project.pbxproj
176
175
  homepage: https://github.com/siuying/NanoStoreInMotion
177
176
  licenses: []
178
177
  post_install_message:
@@ -185,18 +184,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
185
184
  - - ! '>='
186
185
  - !ruby/object:Gem::Version
187
186
  version: '0'
188
- segments:
189
- - 0
190
- hash: -4153764572858363296
191
187
  required_rubygems_version: !ruby/object:Gem::Requirement
192
188
  none: false
193
189
  requirements:
194
190
  - - ! '>='
195
191
  - !ruby/object:Gem::Version
196
192
  version: '0'
197
- segments:
198
- - 0
199
- hash: -4153764572858363296
200
193
  requirements: []
201
194
  rubyforge_project:
202
195
  rubygems_version: 1.8.15
@@ -1,974 +0,0 @@
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>0407CEAD59AF4E1197272004</key>
14
- <dict>
15
- <key>isa</key>
16
- <string>PBXFileReference</string>
17
- <key>name</key>
18
- <string>NSFNanoPredicate_Private.h</string>
19
- <key>path</key>
20
- <string>NanoStore/Classes/Private/NSFNanoPredicate_Private.h</string>
21
- <key>sourceTree</key>
22
- <string>SOURCE_ROOT</string>
23
- </dict>
24
- <key>052B39D4213B4A0BA2D43730</key>
25
- <dict>
26
- <key>children</key>
27
- <array>
28
- <string>11795DF137F643759CEAC067</string>
29
- <string>3204D03E263E4AB6A8A7FF13</string>
30
- <string>D82032CBDE144CD2B176FD5E</string>
31
- <string>2D3246630910465CB57A5964</string>
32
- </array>
33
- <key>isa</key>
34
- <string>PBXGroup</string>
35
- <key>sourceTree</key>
36
- <string>&lt;group&gt;</string>
37
- </dict>
38
- <key>06822F44FC4F47AAB06F4C9E</key>
39
- <dict>
40
- <key>fileRef</key>
41
- <string>DD718D79C5244255987F0DB9</string>
42
- <key>isa</key>
43
- <string>PBXBuildFile</string>
44
- <key>settings</key>
45
- <dict>
46
- <key>COMPILER_FLAGS</key>
47
- <string> -fobjc-arc</string>
48
- </dict>
49
- </dict>
50
- <key>09BD0C31D60040519CE86649</key>
51
- <dict>
52
- <key>isa</key>
53
- <string>PBXFileReference</string>
54
- <key>name</key>
55
- <string>NSFNanoEngine.h</string>
56
- <key>path</key>
57
- <string>NanoStore/Classes/Advanced/NSFNanoEngine.h</string>
58
- <key>sourceTree</key>
59
- <string>SOURCE_ROOT</string>
60
- </dict>
61
- <key>09F58FB7C6634B3FBD517E22</key>
62
- <dict>
63
- <key>buildSettings</key>
64
- <dict>
65
- <key>ALWAYS_SEARCH_USER_PATHS</key>
66
- <string>NO</string>
67
- <key>ARCHS</key>
68
- <string>$(ARCHS_STANDARD_32_BIT)</string>
69
- <key>COPY_PHASE_STRIP</key>
70
- <string>NO</string>
71
- <key>DSTROOT</key>
72
- <string>/tmp/xcodeproj.dst</string>
73
- <key>GCC_C_LANGUAGE_STANDARD</key>
74
- <string>gnu99</string>
75
- <key>GCC_DYNAMIC_NO_PIC</key>
76
- <string>NO</string>
77
- <key>GCC_OPTIMIZATION_LEVEL</key>
78
- <string>0</string>
79
- <key>GCC_PRECOMPILE_PREFIX_HEADER</key>
80
- <string>YES</string>
81
- <key>GCC_PREPROCESSOR_DEFINITIONS</key>
82
- <array>
83
- <string>DEBUG=1</string>
84
- <string>$(inherited)</string>
85
- </array>
86
- <key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
87
- <string>NO</string>
88
- <key>GCC_VERSION</key>
89
- <string>com.apple.compilers.llvmgcc42</string>
90
- <key>GCC_WARN_ABOUT_MISSING_PROTOTYPES</key>
91
- <string>YES</string>
92
- <key>GCC_WARN_ABOUT_RETURN_TYPE</key>
93
- <string>YES</string>
94
- <key>GCC_WARN_UNUSED_VARIABLE</key>
95
- <string>YES</string>
96
- <key>INSTALL_PATH</key>
97
- <string>$(BUILT_PRODUCTS_DIR)</string>
98
- <key>IPHONEOS_DEPLOYMENT_TARGET</key>
99
- <string>5.1</string>
100
- <key>OTHER_LDFLAGS</key>
101
- <string></string>
102
- <key>PRODUCT_NAME</key>
103
- <string>$(TARGET_NAME)</string>
104
- <key>PUBLIC_HEADERS_FOLDER_PATH</key>
105
- <string>$(TARGET_NAME)</string>
106
- <key>SDKROOT</key>
107
- <string>iphoneos</string>
108
- <key>SKIP_INSTALL</key>
109
- <string>YES</string>
110
- </dict>
111
- <key>isa</key>
112
- <string>XCBuildConfiguration</string>
113
- <key>name</key>
114
- <string>Debug</string>
115
- </dict>
116
- <key>11795DF137F643759CEAC067</key>
117
- <dict>
118
- <key>children</key>
119
- <array>
120
- <string>EEBC40944BA64B95A2802F10</string>
121
- </array>
122
- <key>isa</key>
123
- <string>PBXGroup</string>
124
- <key>name</key>
125
- <string>Pods</string>
126
- <key>sourceTree</key>
127
- <string>&lt;group&gt;</string>
128
- </dict>
129
- <key>130A8D2014D648439F8FD61A</key>
130
- <dict>
131
- <key>isa</key>
132
- <string>PBXFileReference</string>
133
- <key>name</key>
134
- <string>NSFNanoGlobals.m</string>
135
- <key>path</key>
136
- <string>NanoStore/Classes/Public/NSFNanoGlobals.m</string>
137
- <key>sourceTree</key>
138
- <string>SOURCE_ROOT</string>
139
- </dict>
140
- <key>13A283D7BB5443A0B805C7E8</key>
141
- <dict>
142
- <key>isa</key>
143
- <string>PBXFileReference</string>
144
- <key>name</key>
145
- <string>NSFNanoStore.m</string>
146
- <key>path</key>
147
- <string>NanoStore/Classes/Public/NSFNanoStore.m</string>
148
- <key>sourceTree</key>
149
- <string>SOURCE_ROOT</string>
150
- </dict>
151
- <key>17DC4B68856C46E2A9F2498D</key>
152
- <dict>
153
- <key>buildConfigurations</key>
154
- <array>
155
- <string>BED902D772814032BCFB1CF1</string>
156
- <string>9A25437EDA404D3186CB7E93</string>
157
- </array>
158
- <key>isa</key>
159
- <string>XCConfigurationList</string>
160
- </dict>
161
- <key>1DC38095CC554176ACD33E2C</key>
162
- <dict>
163
- <key>isa</key>
164
- <string>PBXFileReference</string>
165
- <key>lastKnownFileType</key>
166
- <string>text.xcconfig</string>
167
- <key>name</key>
168
- <string>Pods.xcconfig</string>
169
- <key>path</key>
170
- <string>Pods.xcconfig</string>
171
- <key>sourceTree</key>
172
- <string>SOURCE_ROOT</string>
173
- </dict>
174
- <key>1EC506B1BE5E422CB333A565</key>
175
- <dict>
176
- <key>isa</key>
177
- <string>PBXFileReference</string>
178
- <key>name</key>
179
- <string>NSFNanoGlobals_Private.h</string>
180
- <key>path</key>
181
- <string>NanoStore/Classes/Private/NSFNanoGlobals_Private.h</string>
182
- <key>sourceTree</key>
183
- <string>SOURCE_ROOT</string>
184
- </dict>
185
- <key>200071572F0B477B89BE6CFF</key>
186
- <dict>
187
- <key>isa</key>
188
- <string>PBXFileReference</string>
189
- <key>lastKnownFileType</key>
190
- <string>wrapper.framework</string>
191
- <key>name</key>
192
- <string>Foundation.framework</string>
193
- <key>path</key>
194
- <string>System/Library/Frameworks/Foundation.framework</string>
195
- <key>sourceTree</key>
196
- <string>SDKROOT</string>
197
- </dict>
198
- <key>248834C2A9704C44B4566858</key>
199
- <dict>
200
- <key>isa</key>
201
- <string>PBXFileReference</string>
202
- <key>name</key>
203
- <string>NSFNanoEngine_Private.h</string>
204
- <key>path</key>
205
- <string>NanoStore/Classes/Private/NSFNanoEngine_Private.h</string>
206
- <key>sourceTree</key>
207
- <string>SOURCE_ROOT</string>
208
- </dict>
209
- <key>28E3BAEC9A894221BB7D2A9C</key>
210
- <dict>
211
- <key>fileRef</key>
212
- <string>51E2637748D847128D3BF1F8</string>
213
- <key>isa</key>
214
- <string>PBXBuildFile</string>
215
- <key>settings</key>
216
- <dict>
217
- <key>COMPILER_FLAGS</key>
218
- <string> -fobjc-arc</string>
219
- </dict>
220
- </dict>
221
- <key>2A3788BD394A4A0A84585DE1</key>
222
- <dict>
223
- <key>isa</key>
224
- <string>PBXFileReference</string>
225
- <key>name</key>
226
- <string>NSFNanoExpression.m</string>
227
- <key>path</key>
228
- <string>NanoStore/Classes/Public/NSFNanoExpression.m</string>
229
- <key>sourceTree</key>
230
- <string>SOURCE_ROOT</string>
231
- </dict>
232
- <key>2D3246630910465CB57A5964</key>
233
- <dict>
234
- <key>children</key>
235
- <array>
236
- <string>D366BC338D824CB7BF62D47A</string>
237
- </array>
238
- <key>isa</key>
239
- <string>PBXGroup</string>
240
- <key>name</key>
241
- <string>Targets Support Files</string>
242
- <key>sourceTree</key>
243
- <string>&lt;group&gt;</string>
244
- </dict>
245
- <key>3204D03E263E4AB6A8A7FF13</key>
246
- <dict>
247
- <key>children</key>
248
- <array>
249
- <string>200071572F0B477B89BE6CFF</string>
250
- </array>
251
- <key>isa</key>
252
- <string>PBXGroup</string>
253
- <key>name</key>
254
- <string>Frameworks</string>
255
- <key>sourceTree</key>
256
- <string>&lt;group&gt;</string>
257
- </dict>
258
- <key>3602370DCB2C4B62AA24D151</key>
259
- <dict>
260
- <key>isa</key>
261
- <string>PBXFileReference</string>
262
- <key>name</key>
263
- <string>Pods-resources.sh</string>
264
- <key>path</key>
265
- <string>Pods-resources.sh</string>
266
- <key>sourceTree</key>
267
- <string>SOURCE_ROOT</string>
268
- </dict>
269
- <key>375F4B21A08D475DBEAF4A5A</key>
270
- <dict>
271
- <key>isa</key>
272
- <string>PBXFileReference</string>
273
- <key>name</key>
274
- <string>NSFNanoEngine.m</string>
275
- <key>path</key>
276
- <string>NanoStore/Classes/Advanced/NSFNanoEngine.m</string>
277
- <key>sourceTree</key>
278
- <string>SOURCE_ROOT</string>
279
- </dict>
280
- <key>444502D60A984C328C06F4C3</key>
281
- <dict>
282
- <key>fileRef</key>
283
- <string>BC2B794992644159B1792B01</string>
284
- <key>isa</key>
285
- <string>PBXBuildFile</string>
286
- <key>settings</key>
287
- <dict>
288
- <key>COMPILER_FLAGS</key>
289
- <string> -fobjc-arc</string>
290
- </dict>
291
- </dict>
292
- <key>51E2637748D847128D3BF1F8</key>
293
- <dict>
294
- <key>isa</key>
295
- <string>PBXFileReference</string>
296
- <key>name</key>
297
- <string>NSFNanoSortDescriptor.m</string>
298
- <key>path</key>
299
- <string>NanoStore/Classes/Public/NSFNanoSortDescriptor.m</string>
300
- <key>sourceTree</key>
301
- <string>SOURCE_ROOT</string>
302
- </dict>
303
- <key>52AB966768ED4D87867F97D4</key>
304
- <dict>
305
- <key>isa</key>
306
- <string>PBXFileReference</string>
307
- <key>name</key>
308
- <string>NSFNanoStore_Private.h</string>
309
- <key>path</key>
310
- <string>NanoStore/Classes/Private/NSFNanoStore_Private.h</string>
311
- <key>sourceTree</key>
312
- <string>SOURCE_ROOT</string>
313
- </dict>
314
- <key>5B7AB52BE06D4C9CA9C94D86</key>
315
- <dict>
316
- <key>isa</key>
317
- <string>PBXFileReference</string>
318
- <key>name</key>
319
- <string>NSFNanoSortDescriptor.h</string>
320
- <key>path</key>
321
- <string>NanoStore/Classes/Public/NSFNanoSortDescriptor.h</string>
322
- <key>sourceTree</key>
323
- <string>SOURCE_ROOT</string>
324
- </dict>
325
- <key>5EC3BA3ACBA844BE90493CE6</key>
326
- <dict>
327
- <key>fileRef</key>
328
- <string>375F4B21A08D475DBEAF4A5A</string>
329
- <key>isa</key>
330
- <string>PBXBuildFile</string>
331
- <key>settings</key>
332
- <dict>
333
- <key>COMPILER_FLAGS</key>
334
- <string> -fobjc-arc</string>
335
- </dict>
336
- </dict>
337
- <key>5EE0BF2BD0CB4C969431BE2E</key>
338
- <dict>
339
- <key>buildSettings</key>
340
- <dict>
341
- <key>ALWAYS_SEARCH_USER_PATHS</key>
342
- <string>NO</string>
343
- <key>ARCHS</key>
344
- <string>$(ARCHS_STANDARD_32_BIT)</string>
345
- <key>COPY_PHASE_STRIP</key>
346
- <string>YES</string>
347
- <key>DSTROOT</key>
348
- <string>/tmp/xcodeproj.dst</string>
349
- <key>GCC_C_LANGUAGE_STANDARD</key>
350
- <string>gnu99</string>
351
- <key>GCC_PRECOMPILE_PREFIX_HEADER</key>
352
- <string>YES</string>
353
- <key>GCC_VERSION</key>
354
- <string>com.apple.compilers.llvmgcc42</string>
355
- <key>GCC_WARN_ABOUT_MISSING_PROTOTYPES</key>
356
- <string>YES</string>
357
- <key>GCC_WARN_ABOUT_RETURN_TYPE</key>
358
- <string>YES</string>
359
- <key>GCC_WARN_UNUSED_VARIABLE</key>
360
- <string>YES</string>
361
- <key>INSTALL_PATH</key>
362
- <string>$(BUILT_PRODUCTS_DIR)</string>
363
- <key>IPHONEOS_DEPLOYMENT_TARGET</key>
364
- <string>5.1</string>
365
- <key>OTHER_LDFLAGS</key>
366
- <string></string>
367
- <key>PRODUCT_NAME</key>
368
- <string>$(TARGET_NAME)</string>
369
- <key>PUBLIC_HEADERS_FOLDER_PATH</key>
370
- <string>$(TARGET_NAME)</string>
371
- <key>SDKROOT</key>
372
- <string>iphoneos</string>
373
- <key>SKIP_INSTALL</key>
374
- <string>YES</string>
375
- <key>VALIDATE_PRODUCT</key>
376
- <string>YES</string>
377
- </dict>
378
- <key>isa</key>
379
- <string>XCBuildConfiguration</string>
380
- <key>name</key>
381
- <string>Release</string>
382
- </dict>
383
- <key>65AE1AEB0C364115931D0C66</key>
384
- <dict>
385
- <key>isa</key>
386
- <string>PBXFileReference</string>
387
- <key>name</key>
388
- <string>NSFNanoPredicate.h</string>
389
- <key>path</key>
390
- <string>NanoStore/Classes/Public/NSFNanoPredicate.h</string>
391
- <key>sourceTree</key>
392
- <string>SOURCE_ROOT</string>
393
- </dict>
394
- <key>67F38E5924F54E20820BF026</key>
395
- <dict>
396
- <key>isa</key>
397
- <string>PBXFileReference</string>
398
- <key>name</key>
399
- <string>Pods-prefix.pch</string>
400
- <key>path</key>
401
- <string>Pods-prefix.pch</string>
402
- <key>sourceTree</key>
403
- <string>SOURCE_ROOT</string>
404
- </dict>
405
- <key>6A766A3B7E2F4AEABAF95998</key>
406
- <dict>
407
- <key>isa</key>
408
- <string>PBXFileReference</string>
409
- <key>name</key>
410
- <string>NanoStore_Private.h</string>
411
- <key>path</key>
412
- <string>NanoStore/Classes/Private/NanoStore_Private.h</string>
413
- <key>sourceTree</key>
414
- <string>SOURCE_ROOT</string>
415
- </dict>
416
- <key>6BF062951B394A07A8E92B53</key>
417
- <dict>
418
- <key>fileRef</key>
419
- <string>F5251AD7EC7849DA8668F0B8</string>
420
- <key>isa</key>
421
- <string>PBXBuildFile</string>
422
- <key>settings</key>
423
- <dict>
424
- <key>COMPILER_FLAGS</key>
425
- <string> -fobjc-arc</string>
426
- </dict>
427
- </dict>
428
- <key>6EE53186FB574DC4ACA5ECA0</key>
429
- <dict>
430
- <key>isa</key>
431
- <string>PBXFileReference</string>
432
- <key>name</key>
433
- <string>NSFNanoBag_Private.h</string>
434
- <key>path</key>
435
- <string>NanoStore/Classes/Private/NSFNanoBag_Private.h</string>
436
- <key>sourceTree</key>
437
- <string>SOURCE_ROOT</string>
438
- </dict>
439
- <key>765934556FAE4C6C9939BE2F</key>
440
- <dict>
441
- <key>buildConfigurations</key>
442
- <array>
443
- <string>09F58FB7C6634B3FBD517E22</string>
444
- <string>5EE0BF2BD0CB4C969431BE2E</string>
445
- </array>
446
- <key>defaultConfigurationIsVisible</key>
447
- <string>0</string>
448
- <key>defaultConfigurationName</key>
449
- <string>Release</string>
450
- <key>isa</key>
451
- <string>XCConfigurationList</string>
452
- </dict>
453
- <key>810F9775AAF241CAA43BDA0D</key>
454
- <dict>
455
- <key>buildConfigurationList</key>
456
- <string>17DC4B68856C46E2A9F2498D</string>
457
- <key>buildPhases</key>
458
- <array>
459
- <string>D763AD1516F34C0BA80DDBED</string>
460
- <string>CB6157C799E44EDC9B7E379B</string>
461
- <string>94C56BC5E59A404494B19E7B</string>
462
- </array>
463
- <key>buildRules</key>
464
- <array/>
465
- <key>dependencies</key>
466
- <array/>
467
- <key>isa</key>
468
- <string>PBXNativeTarget</string>
469
- <key>name</key>
470
- <string>Pods</string>
471
- <key>productName</key>
472
- <string>Pods</string>
473
- <key>productReference</key>
474
- <string>DBC5BD3C0C6C4AD299405BCA</string>
475
- <key>productType</key>
476
- <string>com.apple.product-type.library.static</string>
477
- </dict>
478
- <key>823265AD40124E40B4D376D8</key>
479
- <dict>
480
- <key>fileRef</key>
481
- <string>967AF6CAF14447E6A03A5714</string>
482
- <key>isa</key>
483
- <string>PBXBuildFile</string>
484
- <key>settings</key>
485
- <dict>
486
- <key>COMPILER_FLAGS</key>
487
- <string> -fobjc-arc</string>
488
- </dict>
489
- </dict>
490
- <key>9112719EE6BC4644AAEB33A4</key>
491
- <dict>
492
- <key>isa</key>
493
- <string>PBXFileReference</string>
494
- <key>name</key>
495
- <string>NSFNanoExpression.h</string>
496
- <key>path</key>
497
- <string>NanoStore/Classes/Public/NSFNanoExpression.h</string>
498
- <key>sourceTree</key>
499
- <string>SOURCE_ROOT</string>
500
- </dict>
501
- <key>91DE1D5A5CB54213B4ED0827</key>
502
- <dict>
503
- <key>isa</key>
504
- <string>PBXFileReference</string>
505
- <key>name</key>
506
- <string>NSFNanoResult.h</string>
507
- <key>path</key>
508
- <string>NanoStore/Classes/Advanced/NSFNanoResult.h</string>
509
- <key>sourceTree</key>
510
- <string>SOURCE_ROOT</string>
511
- </dict>
512
- <key>94C56BC5E59A404494B19E7B</key>
513
- <dict>
514
- <key>buildActionMask</key>
515
- <string>2147483647</string>
516
- <key>dstPath</key>
517
- <string>$(PRODUCT_NAME)</string>
518
- <key>dstSubfolderSpec</key>
519
- <string>16</string>
520
- <key>files</key>
521
- <array/>
522
- <key>isa</key>
523
- <string>PBXCopyFilesBuildPhase</string>
524
- <key>runOnlyForDeploymentPostprocessing</key>
525
- <string>0</string>
526
- </dict>
527
- <key>967AF6CAF14447E6A03A5714</key>
528
- <dict>
529
- <key>isa</key>
530
- <string>PBXFileReference</string>
531
- <key>name</key>
532
- <string>NSFNanoSearch.m</string>
533
- <key>path</key>
534
- <string>NanoStore/Classes/Public/NSFNanoSearch.m</string>
535
- <key>sourceTree</key>
536
- <string>SOURCE_ROOT</string>
537
- </dict>
538
- <key>977F48F60AD442129B5B1CC3</key>
539
- <dict>
540
- <key>fileRef</key>
541
- <string>130A8D2014D648439F8FD61A</string>
542
- <key>isa</key>
543
- <string>PBXBuildFile</string>
544
- <key>settings</key>
545
- <dict>
546
- <key>COMPILER_FLAGS</key>
547
- <string> -fobjc-arc</string>
548
- </dict>
549
- </dict>
550
- <key>9A25437EDA404D3186CB7E93</key>
551
- <dict>
552
- <key>baseConfigurationReference</key>
553
- <string>1DC38095CC554176ACD33E2C</string>
554
- <key>buildSettings</key>
555
- <dict>
556
- <key>DSTROOT</key>
557
- <string>/tmp/xcodeproj.dst</string>
558
- <key>GCC_PRECOMPILE_PREFIX_HEADER</key>
559
- <string>YES</string>
560
- <key>GCC_PREFIX_HEADER</key>
561
- <string>Pods-prefix.pch</string>
562
- <key>GCC_VERSION</key>
563
- <string>com.apple.compilers.llvm.clang.1_0</string>
564
- <key>OTHER_LDFLAGS</key>
565
- <string></string>
566
- <key>PODS_ROOT</key>
567
- <string>$(SRCROOT)</string>
568
- <key>PRODUCT_NAME</key>
569
- <string>$(TARGET_NAME)</string>
570
- <key>SKIP_INSTALL</key>
571
- <string>YES</string>
572
- </dict>
573
- <key>isa</key>
574
- <string>XCBuildConfiguration</string>
575
- <key>name</key>
576
- <string>Release</string>
577
- </dict>
578
- <key>A3302F974E094C1386825218</key>
579
- <dict>
580
- <key>isa</key>
581
- <string>PBXFileReference</string>
582
- <key>name</key>
583
- <string>NSFNanoBag.m</string>
584
- <key>path</key>
585
- <string>NanoStore/Classes/Public/NSFNanoBag.m</string>
586
- <key>sourceTree</key>
587
- <string>SOURCE_ROOT</string>
588
- </dict>
589
- <key>B568D6949DCF4CFBBFF366B7</key>
590
- <dict>
591
- <key>isa</key>
592
- <string>PBXFileReference</string>
593
- <key>name</key>
594
- <string>NSFNanoResult_Private.h</string>
595
- <key>path</key>
596
- <string>NanoStore/Classes/Private/NSFNanoResult_Private.h</string>
597
- <key>sourceTree</key>
598
- <string>SOURCE_ROOT</string>
599
- </dict>
600
- <key>BABB628918144AACB0D1932E</key>
601
- <dict>
602
- <key>fileRef</key>
603
- <string>2A3788BD394A4A0A84585DE1</string>
604
- <key>isa</key>
605
- <string>PBXBuildFile</string>
606
- <key>settings</key>
607
- <dict>
608
- <key>COMPILER_FLAGS</key>
609
- <string> -fobjc-arc</string>
610
- </dict>
611
- </dict>
612
- <key>BC2B794992644159B1792B01</key>
613
- <dict>
614
- <key>isa</key>
615
- <string>PBXFileReference</string>
616
- <key>name</key>
617
- <string>NSFNanoPredicate.m</string>
618
- <key>path</key>
619
- <string>NanoStore/Classes/Public/NSFNanoPredicate.m</string>
620
- <key>sourceTree</key>
621
- <string>SOURCE_ROOT</string>
622
- </dict>
623
- <key>BED902D772814032BCFB1CF1</key>
624
- <dict>
625
- <key>baseConfigurationReference</key>
626
- <string>1DC38095CC554176ACD33E2C</string>
627
- <key>buildSettings</key>
628
- <dict>
629
- <key>DSTROOT</key>
630
- <string>/tmp/xcodeproj.dst</string>
631
- <key>GCC_PRECOMPILE_PREFIX_HEADER</key>
632
- <string>YES</string>
633
- <key>GCC_PREFIX_HEADER</key>
634
- <string>Pods-prefix.pch</string>
635
- <key>GCC_VERSION</key>
636
- <string>com.apple.compilers.llvm.clang.1_0</string>
637
- <key>OTHER_LDFLAGS</key>
638
- <string></string>
639
- <key>PODS_ROOT</key>
640
- <string>$(SRCROOT)</string>
641
- <key>PRODUCT_NAME</key>
642
- <string>$(TARGET_NAME)</string>
643
- <key>SKIP_INSTALL</key>
644
- <string>YES</string>
645
- </dict>
646
- <key>isa</key>
647
- <string>XCBuildConfiguration</string>
648
- <key>name</key>
649
- <string>Debug</string>
650
- </dict>
651
- <key>CB6157C799E44EDC9B7E379B</key>
652
- <dict>
653
- <key>buildActionMask</key>
654
- <string>2147483647</string>
655
- <key>files</key>
656
- <array>
657
- <string>D5CBA687CE0A46C38FB55597</string>
658
- </array>
659
- <key>isa</key>
660
- <string>PBXFrameworksBuildPhase</string>
661
- <key>runOnlyForDeploymentPostprocessing</key>
662
- <string>0</string>
663
- </dict>
664
- <key>CBCC533741314F4A9FC491A0</key>
665
- <dict>
666
- <key>isa</key>
667
- <string>PBXFileReference</string>
668
- <key>name</key>
669
- <string>NSFNanoObject_Private.h</string>
670
- <key>path</key>
671
- <string>NanoStore/Classes/Private/NSFNanoObject_Private.h</string>
672
- <key>sourceTree</key>
673
- <string>SOURCE_ROOT</string>
674
- </dict>
675
- <key>CC68AB9BE5484F738F7FAF57</key>
676
- <dict>
677
- <key>isa</key>
678
- <string>PBXFileReference</string>
679
- <key>name</key>
680
- <string>NSFNanoObject.h</string>
681
- <key>path</key>
682
- <string>NanoStore/Classes/Public/NSFNanoObject.h</string>
683
- <key>sourceTree</key>
684
- <string>SOURCE_ROOT</string>
685
- </dict>
686
- <key>D0C34617FA1D4670A234EC34</key>
687
- <dict>
688
- <key>attributes</key>
689
- <dict>
690
- <key>LastUpgradeCheck</key>
691
- <string>0420</string>
692
- </dict>
693
- <key>buildConfigurationList</key>
694
- <string>765934556FAE4C6C9939BE2F</string>
695
- <key>compatibilityVersion</key>
696
- <string>Xcode 3.2</string>
697
- <key>developmentRegion</key>
698
- <string>English</string>
699
- <key>hasScannedForEncodings</key>
700
- <string>0</string>
701
- <key>isa</key>
702
- <string>PBXProject</string>
703
- <key>knownRegions</key>
704
- <array>
705
- <string>en</string>
706
- </array>
707
- <key>mainGroup</key>
708
- <string>052B39D4213B4A0BA2D43730</string>
709
- <key>productRefGroup</key>
710
- <string>D82032CBDE144CD2B176FD5E</string>
711
- <key>projectDirPath</key>
712
- <string></string>
713
- <key>projectRoot</key>
714
- <string></string>
715
- <key>targets</key>
716
- <array>
717
- <string>810F9775AAF241CAA43BDA0D</string>
718
- </array>
719
- </dict>
720
- <key>D366BC338D824CB7BF62D47A</key>
721
- <dict>
722
- <key>children</key>
723
- <array>
724
- <string>3602370DCB2C4B62AA24D151</string>
725
- <string>67F38E5924F54E20820BF026</string>
726
- <string>1DC38095CC554176ACD33E2C</string>
727
- </array>
728
- <key>isa</key>
729
- <string>PBXGroup</string>
730
- <key>name</key>
731
- <string>Pods</string>
732
- <key>sourceTree</key>
733
- <string>&lt;group&gt;</string>
734
- </dict>
735
- <key>D3C9FB6A67DD4731B0C4E0F8</key>
736
- <dict>
737
- <key>isa</key>
738
- <string>PBXFileReference</string>
739
- <key>name</key>
740
- <string>NanoStore.h</string>
741
- <key>path</key>
742
- <string>NanoStore/Classes/Public/NanoStore.h</string>
743
- <key>sourceTree</key>
744
- <string>SOURCE_ROOT</string>
745
- </dict>
746
- <key>D5CBA687CE0A46C38FB55597</key>
747
- <dict>
748
- <key>fileRef</key>
749
- <string>200071572F0B477B89BE6CFF</string>
750
- <key>isa</key>
751
- <string>PBXBuildFile</string>
752
- </dict>
753
- <key>D6448578E0434B9AB52EEAC5</key>
754
- <dict>
755
- <key>isa</key>
756
- <string>PBXFileReference</string>
757
- <key>name</key>
758
- <string>NSFNanoBag.h</string>
759
- <key>path</key>
760
- <string>NanoStore/Classes/Public/NSFNanoBag.h</string>
761
- <key>sourceTree</key>
762
- <string>SOURCE_ROOT</string>
763
- </dict>
764
- <key>D763AD1516F34C0BA80DDBED</key>
765
- <dict>
766
- <key>buildActionMask</key>
767
- <string>2147483647</string>
768
- <key>files</key>
769
- <array>
770
- <string>5EC3BA3ACBA844BE90493CE6</string>
771
- <string>06822F44FC4F47AAB06F4C9E</string>
772
- <string>E14549B4AC094BE78C2DDBA9</string>
773
- <string>BABB628918144AACB0D1932E</string>
774
- <string>977F48F60AD442129B5B1CC3</string>
775
- <string>6BF062951B394A07A8E92B53</string>
776
- <string>444502D60A984C328C06F4C3</string>
777
- <string>823265AD40124E40B4D376D8</string>
778
- <string>28E3BAEC9A894221BB7D2A9C</string>
779
- <string>EE1973E9CCB245B2B90C50A9</string>
780
- </array>
781
- <key>isa</key>
782
- <string>PBXSourcesBuildPhase</string>
783
- <key>runOnlyForDeploymentPostprocessing</key>
784
- <string>0</string>
785
- </dict>
786
- <key>D82032CBDE144CD2B176FD5E</key>
787
- <dict>
788
- <key>children</key>
789
- <array>
790
- <string>DBC5BD3C0C6C4AD299405BCA</string>
791
- </array>
792
- <key>isa</key>
793
- <string>PBXGroup</string>
794
- <key>name</key>
795
- <string>Products</string>
796
- <key>sourceTree</key>
797
- <string>&lt;group&gt;</string>
798
- </dict>
799
- <key>DBC5BD3C0C6C4AD299405BCA</key>
800
- <dict>
801
- <key>explicitFileType</key>
802
- <string>archive.ar</string>
803
- <key>includeInIndex</key>
804
- <string>0</string>
805
- <key>isa</key>
806
- <string>PBXFileReference</string>
807
- <key>name</key>
808
- <string>libPods.a</string>
809
- <key>path</key>
810
- <string>libPods.a</string>
811
- <key>sourceTree</key>
812
- <string>BUILT_PRODUCTS_DIR</string>
813
- </dict>
814
- <key>DD718D79C5244255987F0DB9</key>
815
- <dict>
816
- <key>isa</key>
817
- <string>PBXFileReference</string>
818
- <key>name</key>
819
- <string>NSFNanoResult.m</string>
820
- <key>path</key>
821
- <string>NanoStore/Classes/Advanced/NSFNanoResult.m</string>
822
- <key>sourceTree</key>
823
- <string>SOURCE_ROOT</string>
824
- </dict>
825
- <key>DFAEDBD11E054EA3971D4666</key>
826
- <dict>
827
- <key>isa</key>
828
- <string>PBXFileReference</string>
829
- <key>name</key>
830
- <string>NSFNanoStore.h</string>
831
- <key>path</key>
832
- <string>NanoStore/Classes/Public/NSFNanoStore.h</string>
833
- <key>sourceTree</key>
834
- <string>SOURCE_ROOT</string>
835
- </dict>
836
- <key>E14549B4AC094BE78C2DDBA9</key>
837
- <dict>
838
- <key>fileRef</key>
839
- <string>A3302F974E094C1386825218</string>
840
- <key>isa</key>
841
- <string>PBXBuildFile</string>
842
- <key>settings</key>
843
- <dict>
844
- <key>COMPILER_FLAGS</key>
845
- <string> -fobjc-arc</string>
846
- </dict>
847
- </dict>
848
- <key>E2CD706AFEA14B5497F6D489</key>
849
- <dict>
850
- <key>isa</key>
851
- <string>PBXFileReference</string>
852
- <key>name</key>
853
- <string>NSFNanoSearch_Private.h</string>
854
- <key>path</key>
855
- <string>NanoStore/Classes/Private/NSFNanoSearch_Private.h</string>
856
- <key>sourceTree</key>
857
- <string>SOURCE_ROOT</string>
858
- </dict>
859
- <key>EE1973E9CCB245B2B90C50A9</key>
860
- <dict>
861
- <key>fileRef</key>
862
- <string>13A283D7BB5443A0B805C7E8</string>
863
- <key>isa</key>
864
- <string>PBXBuildFile</string>
865
- <key>settings</key>
866
- <dict>
867
- <key>COMPILER_FLAGS</key>
868
- <string> -fobjc-arc</string>
869
- </dict>
870
- </dict>
871
- <key>EE3C1411D8C54850A3354F99</key>
872
- <dict>
873
- <key>isa</key>
874
- <string>PBXFileReference</string>
875
- <key>name</key>
876
- <string>NSFNanoGlobals.h</string>
877
- <key>path</key>
878
- <string>NanoStore/Classes/Public/NSFNanoGlobals.h</string>
879
- <key>sourceTree</key>
880
- <string>SOURCE_ROOT</string>
881
- </dict>
882
- <key>EEBC40944BA64B95A2802F10</key>
883
- <dict>
884
- <key>children</key>
885
- <array>
886
- <string>09BD0C31D60040519CE86649</string>
887
- <string>91DE1D5A5CB54213B4ED0827</string>
888
- <string>6A766A3B7E2F4AEABAF95998</string>
889
- <string>6EE53186FB574DC4ACA5ECA0</string>
890
- <string>248834C2A9704C44B4566858</string>
891
- <string>FB9EC3C03C694BAF821B5191</string>
892
- <string>1EC506B1BE5E422CB333A565</string>
893
- <string>CBCC533741314F4A9FC491A0</string>
894
- <string>0407CEAD59AF4E1197272004</string>
895
- <string>B568D6949DCF4CFBBFF366B7</string>
896
- <string>E2CD706AFEA14B5497F6D489</string>
897
- <string>52AB966768ED4D87867F97D4</string>
898
- <string>D3C9FB6A67DD4731B0C4E0F8</string>
899
- <string>D6448578E0434B9AB52EEAC5</string>
900
- <string>9112719EE6BC4644AAEB33A4</string>
901
- <string>EE3C1411D8C54850A3354F99</string>
902
- <string>CC68AB9BE5484F738F7FAF57</string>
903
- <string>F9EE36E7D2E64C848B78952C</string>
904
- <string>65AE1AEB0C364115931D0C66</string>
905
- <string>FE9E9899805A45B0885B3640</string>
906
- <string>5B7AB52BE06D4C9CA9C94D86</string>
907
- <string>DFAEDBD11E054EA3971D4666</string>
908
- <string>375F4B21A08D475DBEAF4A5A</string>
909
- <string>DD718D79C5244255987F0DB9</string>
910
- <string>A3302F974E094C1386825218</string>
911
- <string>2A3788BD394A4A0A84585DE1</string>
912
- <string>130A8D2014D648439F8FD61A</string>
913
- <string>F5251AD7EC7849DA8668F0B8</string>
914
- <string>BC2B794992644159B1792B01</string>
915
- <string>967AF6CAF14447E6A03A5714</string>
916
- <string>51E2637748D847128D3BF1F8</string>
917
- <string>13A283D7BB5443A0B805C7E8</string>
918
- </array>
919
- <key>isa</key>
920
- <string>PBXGroup</string>
921
- <key>name</key>
922
- <string>NanoStore</string>
923
- <key>sourceTree</key>
924
- <string>&lt;group&gt;</string>
925
- </dict>
926
- <key>F5251AD7EC7849DA8668F0B8</key>
927
- <dict>
928
- <key>isa</key>
929
- <string>PBXFileReference</string>
930
- <key>name</key>
931
- <string>NSFNanoObject.m</string>
932
- <key>path</key>
933
- <string>NanoStore/Classes/Public/NSFNanoObject.m</string>
934
- <key>sourceTree</key>
935
- <string>SOURCE_ROOT</string>
936
- </dict>
937
- <key>F9EE36E7D2E64C848B78952C</key>
938
- <dict>
939
- <key>isa</key>
940
- <string>PBXFileReference</string>
941
- <key>name</key>
942
- <string>NSFNanoObjectProtocol.h</string>
943
- <key>path</key>
944
- <string>NanoStore/Classes/Public/NSFNanoObjectProtocol.h</string>
945
- <key>sourceTree</key>
946
- <string>SOURCE_ROOT</string>
947
- </dict>
948
- <key>FB9EC3C03C694BAF821B5191</key>
949
- <dict>
950
- <key>isa</key>
951
- <string>PBXFileReference</string>
952
- <key>name</key>
953
- <string>NSFNanoExpression_Private.h</string>
954
- <key>path</key>
955
- <string>NanoStore/Classes/Private/NSFNanoExpression_Private.h</string>
956
- <key>sourceTree</key>
957
- <string>SOURCE_ROOT</string>
958
- </dict>
959
- <key>FE9E9899805A45B0885B3640</key>
960
- <dict>
961
- <key>isa</key>
962
- <string>PBXFileReference</string>
963
- <key>name</key>
964
- <string>NSFNanoSearch.h</string>
965
- <key>path</key>
966
- <string>NanoStore/Classes/Public/NSFNanoSearch.h</string>
967
- <key>sourceTree</key>
968
- <string>SOURCE_ROOT</string>
969
- </dict>
970
- </dict>
971
- <key>rootObject</key>
972
- <string>D0C34617FA1D4670A234EC34</string>
973
- </dict>
974
- </plist>