qa 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +284 -2
- data/app/controllers/qa/linked_data_terms_controller.rb +127 -0
- data/config/authorities/linked_data/agrovoc.json +61 -0
- data/config/authorities/linked_data/loc.json +46 -0
- data/config/authorities/linked_data/oclc_fast.json +78 -0
- data/config/initializers/linked_data_authorities.rb +17 -0
- data/config/routes.rb +3 -0
- data/lib/qa.rb +15 -0
- data/lib/qa/authorities.rb +2 -0
- data/lib/qa/authorities/base.rb +1 -1
- data/lib/qa/authorities/crossref.rb +16 -0
- data/lib/qa/authorities/crossref/generic_authority.rb +63 -0
- data/lib/qa/authorities/geonames.rb +2 -1
- data/lib/qa/authorities/linked_data.rb +10 -0
- data/lib/qa/authorities/linked_data/config.rb +80 -0
- data/lib/qa/authorities/linked_data/config/search_config.rb +170 -0
- data/lib/qa/authorities/linked_data/config/term_config.rb +186 -0
- data/lib/qa/authorities/linked_data/find_term.rb +148 -0
- data/lib/qa/authorities/linked_data/generic_authority.rb +49 -0
- data/lib/qa/authorities/linked_data/rdf_helper.rb +102 -0
- data/lib/qa/authorities/linked_data/search_query.rb +143 -0
- data/lib/qa/version.rb +1 -1
- data/spec/controllers/linked_data_terms_controller_spec.rb +202 -0
- data/spec/fixtures/authorities/linked_data/lod_full_config.json +111 -0
- data/spec/fixtures/authorities/linked_data/lod_lang_defaults.json +54 -0
- data/spec/fixtures/authorities/linked_data/lod_lang_multi_defaults.json +54 -0
- data/spec/fixtures/authorities/linked_data/lod_lang_no_defaults.json +52 -0
- data/spec/fixtures/authorities/linked_data/lod_lang_param.json +66 -0
- data/spec/fixtures/authorities/linked_data/lod_min_config.json +49 -0
- data/spec/fixtures/authorities/linked_data/lod_search_only_config.json +55 -0
- data/spec/fixtures/authorities/linked_data/lod_sort.json +27 -0
- data/spec/fixtures/authorities/linked_data/lod_term_only_config.json +59 -0
- data/spec/fixtures/funders-find-response.json +1 -0
- data/spec/fixtures/funders-noquery.json +1 -0
- data/spec/fixtures/funders-noresults.json +1 -0
- data/spec/fixtures/funders-result.json +1 -0
- data/spec/fixtures/journals-find-response-two-issn.json +1 -0
- data/spec/fixtures/journals-find-response.json +1 -0
- data/spec/fixtures/journals-noquery.json +1 -0
- data/spec/fixtures/journals-noresults.json +1 -0
- data/spec/fixtures/journals-result.json +705 -0
- data/spec/fixtures/lod_agrovoc_query_many_results.json +1 -0
- data/spec/fixtures/lod_agrovoc_query_no_results.json +1 -0
- data/spec/fixtures/lod_agrovoc_term_found.rdf.xml +217 -0
- data/spec/fixtures/lod_lang_search_en.rdf.xml +42 -0
- data/spec/fixtures/lod_lang_search_enfr.rdf.xml +48 -0
- data/spec/fixtures/lod_lang_search_enfrde.rdf.xml +54 -0
- data/spec/fixtures/lod_lang_search_fr.rdf.xml +42 -0
- data/spec/fixtures/lod_lang_term_en.rdf.xml +65 -0
- data/spec/fixtures/lod_lang_term_enfr.rdf.xml +71 -0
- data/spec/fixtures/lod_lang_term_enfr_noalt.rdf.xml +69 -0
- data/spec/fixtures/lod_lang_term_enfrde.rdf.xml +79 -0
- data/spec/fixtures/lod_lang_term_fr.rdf.xml +65 -0
- data/spec/fixtures/lod_loc_term_found.rdf.xml +262 -0
- data/spec/fixtures/lod_oclc_all_query_3_results.rdf.xml +142 -0
- data/spec/fixtures/lod_oclc_personalName_query_3_results.rdf.xml +128 -0
- data/spec/fixtures/lod_oclc_query_no_results.rdf.xml +13 -0
- data/spec/fixtures/lod_oclc_term_found.rdf.xml +51 -0
- data/spec/lib/authorities/crossref_spec.rb +180 -0
- data/spec/lib/authorities/geonames_spec.rb +2 -2
- data/spec/lib/authorities/linked_data/config_spec.rb +143 -0
- data/spec/lib/authorities/linked_data/find_term_spec.rb +5 -0
- data/spec/lib/authorities/linked_data/generic_authority_spec.rb +580 -0
- data/spec/lib/authorities/linked_data/search_config_spec.rb +385 -0
- data/spec/lib/authorities/linked_data/search_query_spec.rb +79 -0
- data/spec/lib/authorities/linked_data/term_config_spec.rb +419 -0
- data/spec/routing/linked_data_route_spec.rb +35 -0
- data/spec/spec_helper.rb +2 -0
- metadata +184 -39
data/spec/spec_helper.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
require 'linkeddata'
|
2
|
+
require 'json'
|
2
3
|
require 'engine_cart'
|
3
4
|
require 'simplecov'
|
4
5
|
require 'coveralls'
|
@@ -14,6 +15,7 @@ Coveralls.wear!
|
|
14
15
|
|
15
16
|
require 'rspec/rails'
|
16
17
|
require 'webmock/rspec'
|
18
|
+
require 'pry'
|
17
19
|
|
18
20
|
# Requires supporting ruby files with custom matchers and macros, etc,
|
19
21
|
# in spec/support/ and its subdirectories.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: qa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stephen Anderson
|
@@ -15,7 +15,7 @@ authors:
|
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
|
-
date: 2017-
|
18
|
+
date: 2017-05-02 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: rails
|
@@ -93,6 +93,20 @@ dependencies:
|
|
93
93
|
- - ">="
|
94
94
|
- !ruby/object:Gem::Version
|
95
95
|
version: '0'
|
96
|
+
- !ruby/object:Gem::Dependency
|
97
|
+
name: rdf
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
type: :runtime
|
104
|
+
prerelease: false
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
96
110
|
- !ruby/object:Gem::Dependency
|
97
111
|
name: byebug
|
98
112
|
requirement: !ruby/object:Gem::Requirement
|
@@ -108,19 +122,33 @@ dependencies:
|
|
108
122
|
- !ruby/object:Gem::Version
|
109
123
|
version: '0'
|
110
124
|
- !ruby/object:Gem::Dependency
|
111
|
-
name:
|
125
|
+
name: pry
|
112
126
|
requirement: !ruby/object:Gem::Requirement
|
113
127
|
requirements:
|
114
|
-
- - "
|
128
|
+
- - ">="
|
115
129
|
- !ruby/object:Gem::Version
|
116
|
-
version: '0
|
130
|
+
version: '0'
|
117
131
|
type: :development
|
118
132
|
prerelease: false
|
119
133
|
version_requirements: !ruby/object:Gem::Requirement
|
120
134
|
requirements:
|
121
|
-
- - "
|
135
|
+
- - ">="
|
122
136
|
- !ruby/object:Gem::Version
|
123
|
-
version: '0
|
137
|
+
version: '0'
|
138
|
+
- !ruby/object:Gem::Dependency
|
139
|
+
name: pry-byebug
|
140
|
+
requirement: !ruby/object:Gem::Requirement
|
141
|
+
requirements:
|
142
|
+
- - ">="
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: '0'
|
145
|
+
type: :development
|
146
|
+
prerelease: false
|
147
|
+
version_requirements: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
149
|
+
- - ">="
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: '0'
|
124
152
|
- !ruby/object:Gem::Dependency
|
125
153
|
name: linkeddata
|
126
154
|
requirement: !ruby/object:Gem::Requirement
|
@@ -135,6 +163,20 @@ dependencies:
|
|
135
163
|
- - ">="
|
136
164
|
- !ruby/object:Gem::Version
|
137
165
|
version: '0'
|
166
|
+
- !ruby/object:Gem::Dependency
|
167
|
+
name: engine_cart
|
168
|
+
requirement: !ruby/object:Gem::Requirement
|
169
|
+
requirements:
|
170
|
+
- - "~>"
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
version: '0.8'
|
173
|
+
type: :development
|
174
|
+
prerelease: false
|
175
|
+
version_requirements: !ruby/object:Gem::Requirement
|
176
|
+
requirements:
|
177
|
+
- - "~>"
|
178
|
+
- !ruby/object:Gem::Version
|
179
|
+
version: '0.8'
|
138
180
|
- !ruby/object:Gem::Dependency
|
139
181
|
name: rspec-rails
|
140
182
|
requirement: !ruby/object:Gem::Requirement
|
@@ -233,14 +275,19 @@ files:
|
|
233
275
|
- app/assets/javascripts/qa/application.js
|
234
276
|
- app/assets/stylesheets/qa/application.css
|
235
277
|
- app/controllers/qa/application_controller.rb
|
278
|
+
- app/controllers/qa/linked_data_terms_controller.rb
|
236
279
|
- app/controllers/qa/terms_controller.rb
|
237
280
|
- app/helpers/qa/application_helper.rb
|
238
281
|
- app/models/qa/mesh_tree.rb
|
239
282
|
- app/models/qa/subject_mesh_term.rb
|
240
283
|
- app/views/layouts/qa/application.html.erb
|
241
284
|
- config/authorities.yml
|
285
|
+
- config/authorities/linked_data/agrovoc.json
|
286
|
+
- config/authorities/linked_data/loc.json
|
287
|
+
- config/authorities/linked_data/oclc_fast.json
|
242
288
|
- config/authorities/states.yml
|
243
289
|
- config/initializers/authorities.rb
|
290
|
+
- config/initializers/linked_data_authorities.rb
|
244
291
|
- config/oclcts-authorities.yml
|
245
292
|
- config/routes.rb
|
246
293
|
- db/migrate/20130917200611_create_qa_subject_mesh_terms.rb
|
@@ -264,11 +311,21 @@ files:
|
|
264
311
|
- lib/qa/authorities/assign_fast_subauthority.rb
|
265
312
|
- lib/qa/authorities/authority_with_sub_authority.rb
|
266
313
|
- lib/qa/authorities/base.rb
|
314
|
+
- lib/qa/authorities/crossref.rb
|
315
|
+
- lib/qa/authorities/crossref/generic_authority.rb
|
267
316
|
- lib/qa/authorities/geonames.rb
|
268
317
|
- lib/qa/authorities/getty.rb
|
269
318
|
- lib/qa/authorities/getty/aat.rb
|
270
319
|
- lib/qa/authorities/getty/tgn.rb
|
271
320
|
- lib/qa/authorities/getty/ulan.rb
|
321
|
+
- lib/qa/authorities/linked_data.rb
|
322
|
+
- lib/qa/authorities/linked_data/config.rb
|
323
|
+
- lib/qa/authorities/linked_data/config/search_config.rb
|
324
|
+
- lib/qa/authorities/linked_data/config/term_config.rb
|
325
|
+
- lib/qa/authorities/linked_data/find_term.rb
|
326
|
+
- lib/qa/authorities/linked_data/generic_authority.rb
|
327
|
+
- lib/qa/authorities/linked_data/rdf_helper.rb
|
328
|
+
- lib/qa/authorities/linked_data/search_query.rb
|
272
329
|
- lib/qa/authorities/loc.rb
|
273
330
|
- lib/qa/authorities/loc/generic_authority.rb
|
274
331
|
- lib/qa/authorities/loc_subauthority.rb
|
@@ -292,6 +349,7 @@ files:
|
|
292
349
|
- lib/qa/version.rb
|
293
350
|
- lib/tasks/mesh.rake
|
294
351
|
- lib/tasks/qa_tasks.rake
|
352
|
+
- spec/controllers/linked_data_terms_controller_spec.rb
|
295
353
|
- spec/controllers/terms_controller_spec.rb
|
296
354
|
- spec/fixtures/aat-response.txt
|
297
355
|
- spec/fixtures/assign-fast-noheader.json
|
@@ -302,16 +360,51 @@ files:
|
|
302
360
|
- spec/fixtures/authorities/authority_B.yml
|
303
361
|
- spec/fixtures/authorities/authority_C.yml
|
304
362
|
- spec/fixtures/authorities/authority_D.yml
|
363
|
+
- spec/fixtures/authorities/linked_data/lod_full_config.json
|
364
|
+
- spec/fixtures/authorities/linked_data/lod_lang_defaults.json
|
365
|
+
- spec/fixtures/authorities/linked_data/lod_lang_multi_defaults.json
|
366
|
+
- spec/fixtures/authorities/linked_data/lod_lang_no_defaults.json
|
367
|
+
- spec/fixtures/authorities/linked_data/lod_lang_param.json
|
368
|
+
- spec/fixtures/authorities/linked_data/lod_min_config.json
|
369
|
+
- spec/fixtures/authorities/linked_data/lod_search_only_config.json
|
370
|
+
- spec/fixtures/authorities/linked_data/lod_sort.json
|
371
|
+
- spec/fixtures/authorities/linked_data/lod_term_only_config.json
|
372
|
+
- spec/fixtures/funders-find-response.json
|
373
|
+
- spec/fixtures/funders-noquery.json
|
374
|
+
- spec/fixtures/funders-noresults.json
|
375
|
+
- spec/fixtures/funders-result.json
|
305
376
|
- spec/fixtures/geonames-find-response.json
|
306
377
|
- spec/fixtures/geonames-response.json
|
307
378
|
- spec/fixtures/getty-aat-find-response.json
|
308
379
|
- spec/fixtures/getty-tgn-find-response.json
|
309
380
|
- spec/fixtures/getty-ulan-find-response.json
|
381
|
+
- spec/fixtures/journals-find-response-two-issn.json
|
382
|
+
- spec/fixtures/journals-find-response.json
|
383
|
+
- spec/fixtures/journals-noquery.json
|
384
|
+
- spec/fixtures/journals-noresults.json
|
385
|
+
- spec/fixtures/journals-result.json
|
310
386
|
- spec/fixtures/lexvo_snippet.rdf
|
311
387
|
- spec/fixtures/loc-names-response.txt
|
312
388
|
- spec/fixtures/loc-response.txt
|
313
389
|
- spec/fixtures/loc-subject-find-response.txt
|
314
390
|
- spec/fixtures/loc-subjects-response.txt
|
391
|
+
- spec/fixtures/lod_agrovoc_query_many_results.json
|
392
|
+
- spec/fixtures/lod_agrovoc_query_no_results.json
|
393
|
+
- spec/fixtures/lod_agrovoc_term_found.rdf.xml
|
394
|
+
- spec/fixtures/lod_lang_search_en.rdf.xml
|
395
|
+
- spec/fixtures/lod_lang_search_enfr.rdf.xml
|
396
|
+
- spec/fixtures/lod_lang_search_enfrde.rdf.xml
|
397
|
+
- spec/fixtures/lod_lang_search_fr.rdf.xml
|
398
|
+
- spec/fixtures/lod_lang_term_en.rdf.xml
|
399
|
+
- spec/fixtures/lod_lang_term_enfr.rdf.xml
|
400
|
+
- spec/fixtures/lod_lang_term_enfr_noalt.rdf.xml
|
401
|
+
- spec/fixtures/lod_lang_term_enfrde.rdf.xml
|
402
|
+
- spec/fixtures/lod_lang_term_fr.rdf.xml
|
403
|
+
- spec/fixtures/lod_loc_term_found.rdf.xml
|
404
|
+
- spec/fixtures/lod_oclc_all_query_3_results.rdf.xml
|
405
|
+
- spec/fixtures/lod_oclc_personalName_query_3_results.rdf.xml
|
406
|
+
- spec/fixtures/lod_oclc_query_no_results.rdf.xml
|
407
|
+
- spec/fixtures/lod_oclc_term_found.rdf.xml
|
315
408
|
- spec/fixtures/mesh.txt
|
316
409
|
- spec/fixtures/oclcts-response-mesh-1.txt
|
317
410
|
- spec/fixtures/oclcts-response-mesh-2.txt
|
@@ -320,12 +413,19 @@ files:
|
|
320
413
|
- spec/fixtures/ulan-response.txt
|
321
414
|
- spec/lib/authorities/assign_fast_spec.rb
|
322
415
|
- spec/lib/authorities/base_spec.rb
|
416
|
+
- spec/lib/authorities/crossref_spec.rb
|
323
417
|
- spec/lib/authorities/file_based_authority_spec.rb
|
324
418
|
- spec/lib/authorities/geonames_spec.rb
|
325
419
|
- spec/lib/authorities/getty/aat_spec.rb
|
326
420
|
- spec/lib/authorities/getty/tgn_spec.rb
|
327
421
|
- spec/lib/authorities/getty/ulan_spec.rb
|
328
422
|
- spec/lib/authorities/getty_spec.rb
|
423
|
+
- spec/lib/authorities/linked_data/config_spec.rb
|
424
|
+
- spec/lib/authorities/linked_data/find_term_spec.rb
|
425
|
+
- spec/lib/authorities/linked_data/generic_authority_spec.rb
|
426
|
+
- spec/lib/authorities/linked_data/search_config_spec.rb
|
427
|
+
- spec/lib/authorities/linked_data/search_query_spec.rb
|
428
|
+
- spec/lib/authorities/linked_data/term_config_spec.rb
|
329
429
|
- spec/lib/authorities/loc_spec.rb
|
330
430
|
- spec/lib/authorities/local_spec.rb
|
331
431
|
- spec/lib/authorities/mesh_spec.rb
|
@@ -339,6 +439,7 @@ files:
|
|
339
439
|
- spec/lib/services/rdf_authority_parser_spec.rb
|
340
440
|
- spec/lib/tasks/mesh.rake_spec.rb
|
341
441
|
- spec/models/subject_mesh_term_spec.rb
|
442
|
+
- spec/routing/linked_data_route_spec.rb
|
342
443
|
- spec/routing/route_spec.rb
|
343
444
|
- spec/spec_helper.rb
|
344
445
|
- spec/test_app_templates/lib/generators/test_app_generator.rb
|
@@ -367,53 +468,97 @@ signing_key:
|
|
367
468
|
specification_version: 4
|
368
469
|
summary: You should question your authorities.
|
369
470
|
test_files:
|
471
|
+
- spec/controllers/linked_data_terms_controller_spec.rb
|
370
472
|
- spec/controllers/terms_controller_spec.rb
|
371
|
-
- spec/fixtures/tgn-response.txt
|
372
|
-
- spec/fixtures/assign-fast-topical-result.json
|
373
|
-
- spec/fixtures/loc-subject-find-response.txt
|
374
|
-
- spec/fixtures/loc-names-response.txt
|
375
|
-
- spec/fixtures/mesh.txt
|
376
473
|
- spec/fixtures/aat-response.txt
|
377
|
-
- spec/fixtures/loc-response.txt
|
378
|
-
- spec/fixtures/geonames-response.json
|
379
|
-
- spec/fixtures/oclcts-response-mesh-3.txt
|
380
|
-
- spec/fixtures/assign-fast-oneresult.json
|
381
|
-
- spec/fixtures/getty-aat-find-response.json
|
382
474
|
- spec/fixtures/assign-fast-noheader.json
|
383
|
-
- spec/fixtures/
|
475
|
+
- spec/fixtures/assign-fast-noresults.json
|
476
|
+
- spec/fixtures/assign-fast-oneresult.json
|
477
|
+
- spec/fixtures/assign-fast-topical-result.json
|
384
478
|
- spec/fixtures/authorities/authority_A.yml
|
385
479
|
- spec/fixtures/authorities/authority_B.yml
|
480
|
+
- spec/fixtures/authorities/authority_C.yml
|
386
481
|
- spec/fixtures/authorities/authority_D.yml
|
387
|
-
- spec/fixtures/
|
388
|
-
- spec/fixtures/
|
389
|
-
- spec/fixtures/
|
482
|
+
- spec/fixtures/authorities/linked_data/lod_full_config.json
|
483
|
+
- spec/fixtures/authorities/linked_data/lod_lang_defaults.json
|
484
|
+
- spec/fixtures/authorities/linked_data/lod_lang_multi_defaults.json
|
485
|
+
- spec/fixtures/authorities/linked_data/lod_lang_no_defaults.json
|
486
|
+
- spec/fixtures/authorities/linked_data/lod_lang_param.json
|
487
|
+
- spec/fixtures/authorities/linked_data/lod_min_config.json
|
488
|
+
- spec/fixtures/authorities/linked_data/lod_search_only_config.json
|
489
|
+
- spec/fixtures/authorities/linked_data/lod_sort.json
|
490
|
+
- spec/fixtures/authorities/linked_data/lod_term_only_config.json
|
491
|
+
- spec/fixtures/funders-find-response.json
|
492
|
+
- spec/fixtures/funders-noquery.json
|
493
|
+
- spec/fixtures/funders-noresults.json
|
494
|
+
- spec/fixtures/funders-result.json
|
495
|
+
- spec/fixtures/geonames-find-response.json
|
496
|
+
- spec/fixtures/geonames-response.json
|
497
|
+
- spec/fixtures/getty-aat-find-response.json
|
390
498
|
- spec/fixtures/getty-tgn-find-response.json
|
499
|
+
- spec/fixtures/getty-ulan-find-response.json
|
500
|
+
- spec/fixtures/journals-find-response-two-issn.json
|
501
|
+
- spec/fixtures/journals-find-response.json
|
502
|
+
- spec/fixtures/journals-noquery.json
|
503
|
+
- spec/fixtures/journals-noresults.json
|
504
|
+
- spec/fixtures/journals-result.json
|
505
|
+
- spec/fixtures/lexvo_snippet.rdf
|
506
|
+
- spec/fixtures/loc-names-response.txt
|
507
|
+
- spec/fixtures/loc-response.txt
|
508
|
+
- spec/fixtures/loc-subject-find-response.txt
|
391
509
|
- spec/fixtures/loc-subjects-response.txt
|
510
|
+
- spec/fixtures/lod_agrovoc_query_many_results.json
|
511
|
+
- spec/fixtures/lod_agrovoc_query_no_results.json
|
512
|
+
- spec/fixtures/lod_agrovoc_term_found.rdf.xml
|
513
|
+
- spec/fixtures/lod_lang_search_en.rdf.xml
|
514
|
+
- spec/fixtures/lod_lang_search_enfr.rdf.xml
|
515
|
+
- spec/fixtures/lod_lang_search_enfrde.rdf.xml
|
516
|
+
- spec/fixtures/lod_lang_search_fr.rdf.xml
|
517
|
+
- spec/fixtures/lod_lang_term_en.rdf.xml
|
518
|
+
- spec/fixtures/lod_lang_term_enfr.rdf.xml
|
519
|
+
- spec/fixtures/lod_lang_term_enfr_noalt.rdf.xml
|
520
|
+
- spec/fixtures/lod_lang_term_enfrde.rdf.xml
|
521
|
+
- spec/fixtures/lod_lang_term_fr.rdf.xml
|
522
|
+
- spec/fixtures/lod_loc_term_found.rdf.xml
|
523
|
+
- spec/fixtures/lod_oclc_all_query_3_results.rdf.xml
|
524
|
+
- spec/fixtures/lod_oclc_personalName_query_3_results.rdf.xml
|
525
|
+
- spec/fixtures/lod_oclc_query_no_results.rdf.xml
|
526
|
+
- spec/fixtures/lod_oclc_term_found.rdf.xml
|
527
|
+
- spec/fixtures/mesh.txt
|
392
528
|
- spec/fixtures/oclcts-response-mesh-1.txt
|
529
|
+
- spec/fixtures/oclcts-response-mesh-2.txt
|
530
|
+
- spec/fixtures/oclcts-response-mesh-3.txt
|
531
|
+
- spec/fixtures/tgn-response.txt
|
393
532
|
- spec/fixtures/ulan-response.txt
|
394
|
-
- spec/fixtures/geonames-find-response.json
|
395
|
-
- spec/fixtures/getty-ulan-find-response.json
|
396
|
-
- spec/test_app_templates/lib/generators/test_app_generator.rb
|
397
|
-
- spec/routing/route_spec.rb
|
398
|
-
- spec/models/subject_mesh_term_spec.rb
|
399
|
-
- spec/lib/authorities_loc_subauthorities.rb
|
400
|
-
- spec/lib/tasks/mesh.rake_spec.rb
|
401
|
-
- spec/lib/services/rdf_authority_parser_spec.rb
|
402
|
-
- spec/lib/authorities/mysql_table_based_authority_spec.rb
|
403
|
-
- spec/lib/authorities/geonames_spec.rb
|
404
|
-
- spec/lib/authorities/table_based_authority_spec.rb
|
405
|
-
- spec/lib/authorities/loc_spec.rb
|
406
533
|
- spec/lib/authorities/assign_fast_spec.rb
|
407
|
-
- spec/lib/authorities/
|
408
|
-
- spec/lib/authorities/
|
534
|
+
- spec/lib/authorities/base_spec.rb
|
535
|
+
- spec/lib/authorities/crossref_spec.rb
|
409
536
|
- spec/lib/authorities/file_based_authority_spec.rb
|
537
|
+
- spec/lib/authorities/geonames_spec.rb
|
410
538
|
- spec/lib/authorities/getty/aat_spec.rb
|
411
|
-
- spec/lib/authorities/getty/ulan_spec.rb
|
412
539
|
- spec/lib/authorities/getty/tgn_spec.rb
|
413
|
-
- spec/lib/authorities/
|
414
|
-
- spec/lib/authorities/base_spec.rb
|
415
|
-
- spec/lib/authorities/mesh_spec.rb
|
540
|
+
- spec/lib/authorities/getty/ulan_spec.rb
|
416
541
|
- spec/lib/authorities/getty_spec.rb
|
542
|
+
- spec/lib/authorities/linked_data/config_spec.rb
|
543
|
+
- spec/lib/authorities/linked_data/find_term_spec.rb
|
544
|
+
- spec/lib/authorities/linked_data/generic_authority_spec.rb
|
545
|
+
- spec/lib/authorities/linked_data/search_config_spec.rb
|
546
|
+
- spec/lib/authorities/linked_data/search_query_spec.rb
|
547
|
+
- spec/lib/authorities/linked_data/term_config_spec.rb
|
548
|
+
- spec/lib/authorities/loc_spec.rb
|
549
|
+
- spec/lib/authorities/local_spec.rb
|
550
|
+
- spec/lib/authorities/mesh_spec.rb
|
551
|
+
- spec/lib/authorities/mysql_table_based_authority_spec.rb
|
417
552
|
- spec/lib/authorities/oclcts_spec.rb
|
553
|
+
- spec/lib/authorities/space_fix_encoder.rb
|
554
|
+
- spec/lib/authorities/table_based_authority_spec.rb
|
555
|
+
- spec/lib/authorities/tgnlang_spec.rb
|
556
|
+
- spec/lib/authorities_loc_subauthorities.rb
|
418
557
|
- spec/lib/mesh_data_parser_spec.rb
|
558
|
+
- spec/lib/services/rdf_authority_parser_spec.rb
|
559
|
+
- spec/lib/tasks/mesh.rake_spec.rb
|
560
|
+
- spec/models/subject_mesh_term_spec.rb
|
561
|
+
- spec/routing/linked_data_route_spec.rb
|
562
|
+
- spec/routing/route_spec.rb
|
419
563
|
- spec/spec_helper.rb
|
564
|
+
- spec/test_app_templates/lib/generators/test_app_generator.rb
|