semantic-crawler 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +12 -3
- data/lib/semantic_crawler.rb +1 -0
- data/lib/semantic_crawler/linked_geo_data/relevant_node.rb +93 -2
- data/lib/semantic_crawler/linked_geo_data/relevant_nodes.rb +76 -0
- data/lib/semantic_crawler/version.rb +1 -1
- data/log/semantic-crawler.log +33 -4
- data/log/semantic-crawler.log.20120413 +31 -0
- data/test/dummy/log/development.log +55 -0
- data/test/dummy/log/test.log +8361 -8
- metadata +66 -62
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: semantic-crawler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-04-
|
|
12
|
+
date: 2012-04-14 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: httparty
|
|
@@ -157,70 +157,73 @@ dependencies:
|
|
|
157
157
|
version: '0'
|
|
158
158
|
description: SemanticCrawler is a ruby library that encapsulates data gathering from
|
|
159
159
|
different sources. Currently country information from Factbook and FAO (Food and
|
|
160
|
-
Agriculture Organization of the United Nations)
|
|
161
|
-
are supported.
|
|
160
|
+
Agriculture Organization of the United Nations), crisis information from GDACS.org
|
|
161
|
+
and geo data from LinkedGeoData are supported.
|
|
162
162
|
email:
|
|
163
163
|
- alex.oberhauser@sigimera.org
|
|
164
164
|
executables: []
|
|
165
165
|
extensions: []
|
|
166
166
|
extra_rdoc_files: []
|
|
167
167
|
files:
|
|
168
|
-
- lib/semantic_crawler
|
|
168
|
+
- lib/semantic_crawler.rb
|
|
169
|
+
- lib/tasks/semantic_crawler_tasks.rake
|
|
169
170
|
- lib/semantic_crawler/freebase/country.rb
|
|
170
|
-
- lib/semantic_crawler/
|
|
171
|
+
- lib/semantic_crawler/factbook/country.rb
|
|
172
|
+
- lib/semantic_crawler/fao.rb
|
|
173
|
+
- lib/semantic_crawler/dbpedia.rb
|
|
174
|
+
- lib/semantic_crawler/fao/country.rb
|
|
175
|
+
- lib/semantic_crawler/freebase.rb
|
|
171
176
|
- lib/semantic_crawler/factbook.rb
|
|
172
|
-
- lib/semantic_crawler/version.rb
|
|
173
177
|
- lib/semantic_crawler/gdacs.rb
|
|
174
|
-
- lib/semantic_crawler/
|
|
178
|
+
- lib/semantic_crawler/version.rb
|
|
175
179
|
- lib/semantic_crawler/gdacs/resource.rb
|
|
176
180
|
- lib/semantic_crawler/gdacs/emergency_feed.rb
|
|
177
|
-
- lib/semantic_crawler/gdacs/feed_item.rb
|
|
178
181
|
- lib/semantic_crawler/gdacs/feed.rb
|
|
179
|
-
- lib/semantic_crawler/
|
|
180
|
-
- lib/semantic_crawler/
|
|
181
|
-
- lib/semantic_crawler/freebase.rb
|
|
182
|
-
- lib/semantic_crawler/factbook/country.rb
|
|
182
|
+
- lib/semantic_crawler/gdacs/emergency_feed_item.rb
|
|
183
|
+
- lib/semantic_crawler/gdacs/feed_item.rb
|
|
183
184
|
- lib/semantic_crawler/geo_names.rb
|
|
184
|
-
- lib/semantic_crawler/
|
|
185
|
-
- lib/semantic_crawler.rb
|
|
186
|
-
- lib/
|
|
185
|
+
- lib/semantic_crawler/linked_geo_data/relevant_node.rb
|
|
186
|
+
- lib/semantic_crawler/linked_geo_data/relevant_nodes.rb
|
|
187
|
+
- lib/semantic_crawler/linked_geo_data.rb
|
|
188
|
+
- log/semantic-crawler.log.20120413
|
|
187
189
|
- log/semantic-crawler.log
|
|
188
190
|
- MIT-LICENSE
|
|
189
191
|
- Rakefile
|
|
190
192
|
- README.rdoc
|
|
193
|
+
- test/test_helper.rb
|
|
191
194
|
- test/semantic_crawler_test.rb
|
|
192
|
-
- test/dummy/
|
|
193
|
-
- test/dummy/
|
|
194
|
-
- test/dummy/
|
|
195
|
-
- test/dummy/
|
|
196
|
-
- test/dummy/
|
|
197
|
-
- test/dummy/
|
|
198
|
-
- test/dummy/config
|
|
199
|
-
- test/dummy/config/application.rb
|
|
195
|
+
- test/dummy/log/test.log
|
|
196
|
+
- test/dummy/log/development.log
|
|
197
|
+
- test/dummy/public/422.html
|
|
198
|
+
- test/dummy/public/favicon.ico
|
|
199
|
+
- test/dummy/public/500.html
|
|
200
|
+
- test/dummy/public/404.html
|
|
201
|
+
- test/dummy/config.ru
|
|
200
202
|
- test/dummy/config/locales/en.yml
|
|
201
|
-
- test/dummy/config/environments/test.rb
|
|
202
203
|
- test/dummy/config/environments/production.rb
|
|
204
|
+
- test/dummy/config/environments/test.rb
|
|
203
205
|
- test/dummy/config/environments/development.rb
|
|
204
|
-
- test/dummy/config/environment.rb
|
|
205
|
-
- test/dummy/config/database.yml
|
|
206
206
|
- test/dummy/config/boot.rb
|
|
207
|
-
- test/dummy/
|
|
207
|
+
- test/dummy/config/application.rb
|
|
208
|
+
- test/dummy/config/database.yml
|
|
209
|
+
- test/dummy/config/environment.rb
|
|
210
|
+
- test/dummy/config/routes.rb
|
|
211
|
+
- test/dummy/config/initializers/secret_token.rb
|
|
212
|
+
- test/dummy/config/initializers/inflections.rb
|
|
213
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
214
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
215
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
216
|
+
- test/dummy/config/initializers/session_store.rb
|
|
208
217
|
- test/dummy/script/rails
|
|
218
|
+
- test/dummy/README.rdoc
|
|
209
219
|
- test/dummy/db/development.sqlite3
|
|
210
220
|
- test/dummy/db/test.sqlite3
|
|
211
|
-
- test/dummy/public/500.html
|
|
212
|
-
- test/dummy/public/404.html
|
|
213
|
-
- test/dummy/public/favicon.ico
|
|
214
|
-
- test/dummy/public/422.html
|
|
215
|
-
- test/dummy/config.ru
|
|
216
221
|
- test/dummy/Rakefile
|
|
217
|
-
- test/dummy/app/
|
|
222
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
218
223
|
- test/dummy/app/assets/stylesheets/application.css
|
|
219
|
-
- test/dummy/app/
|
|
224
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
220
225
|
- test/dummy/app/controllers/application_controller.rb
|
|
221
|
-
- test/dummy/app/
|
|
222
|
-
- test/dummy/README.rdoc
|
|
223
|
-
- test/test_helper.rb
|
|
226
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
224
227
|
homepage: https://github.com/obale/semantic_crawler
|
|
225
228
|
licenses: []
|
|
226
229
|
post_install_message:
|
|
@@ -235,7 +238,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
235
238
|
version: '0'
|
|
236
239
|
segments:
|
|
237
240
|
- 0
|
|
238
|
-
hash:
|
|
241
|
+
hash: 1302469808278935
|
|
239
242
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
240
243
|
none: false
|
|
241
244
|
requirements:
|
|
@@ -244,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
244
247
|
version: '0'
|
|
245
248
|
segments:
|
|
246
249
|
- 0
|
|
247
|
-
hash:
|
|
250
|
+
hash: 1302469808278935
|
|
248
251
|
requirements: []
|
|
249
252
|
rubyforge_project:
|
|
250
253
|
rubygems_version: 1.8.21
|
|
@@ -253,37 +256,38 @@ specification_version: 3
|
|
|
253
256
|
summary: SemanticCrawler is a ruby library that encapsulates data gathering from different
|
|
254
257
|
sources.
|
|
255
258
|
test_files:
|
|
259
|
+
- test/test_helper.rb
|
|
256
260
|
- test/semantic_crawler_test.rb
|
|
257
|
-
- test/dummy/
|
|
258
|
-
- test/dummy/
|
|
259
|
-
- test/dummy/
|
|
260
|
-
- test/dummy/
|
|
261
|
-
- test/dummy/
|
|
262
|
-
- test/dummy/
|
|
263
|
-
- test/dummy/config
|
|
264
|
-
- test/dummy/config/application.rb
|
|
261
|
+
- test/dummy/log/test.log
|
|
262
|
+
- test/dummy/log/development.log
|
|
263
|
+
- test/dummy/public/422.html
|
|
264
|
+
- test/dummy/public/favicon.ico
|
|
265
|
+
- test/dummy/public/500.html
|
|
266
|
+
- test/dummy/public/404.html
|
|
267
|
+
- test/dummy/config.ru
|
|
265
268
|
- test/dummy/config/locales/en.yml
|
|
266
|
-
- test/dummy/config/environments/test.rb
|
|
267
269
|
- test/dummy/config/environments/production.rb
|
|
270
|
+
- test/dummy/config/environments/test.rb
|
|
268
271
|
- test/dummy/config/environments/development.rb
|
|
269
|
-
- test/dummy/config/environment.rb
|
|
270
|
-
- test/dummy/config/database.yml
|
|
271
272
|
- test/dummy/config/boot.rb
|
|
272
|
-
- test/dummy/
|
|
273
|
+
- test/dummy/config/application.rb
|
|
274
|
+
- test/dummy/config/database.yml
|
|
275
|
+
- test/dummy/config/environment.rb
|
|
276
|
+
- test/dummy/config/routes.rb
|
|
277
|
+
- test/dummy/config/initializers/secret_token.rb
|
|
278
|
+
- test/dummy/config/initializers/inflections.rb
|
|
279
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
280
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
281
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
282
|
+
- test/dummy/config/initializers/session_store.rb
|
|
273
283
|
- test/dummy/script/rails
|
|
284
|
+
- test/dummy/README.rdoc
|
|
274
285
|
- test/dummy/db/development.sqlite3
|
|
275
286
|
- test/dummy/db/test.sqlite3
|
|
276
|
-
- test/dummy/public/500.html
|
|
277
|
-
- test/dummy/public/404.html
|
|
278
|
-
- test/dummy/public/favicon.ico
|
|
279
|
-
- test/dummy/public/422.html
|
|
280
|
-
- test/dummy/config.ru
|
|
281
287
|
- test/dummy/Rakefile
|
|
282
|
-
- test/dummy/app/
|
|
288
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
283
289
|
- test/dummy/app/assets/stylesheets/application.css
|
|
284
|
-
- test/dummy/app/
|
|
290
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
285
291
|
- test/dummy/app/controllers/application_controller.rb
|
|
286
|
-
- test/dummy/app/
|
|
287
|
-
- test/dummy/README.rdoc
|
|
288
|
-
- test/test_helper.rb
|
|
292
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
289
293
|
has_rdoc:
|