qa 5.7.0 → 5.9.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/spec/spec_helper.rb CHANGED
@@ -1,25 +1,11 @@
1
1
  require 'linkeddata'
2
2
  require 'json'
3
3
  require 'engine_cart'
4
- require 'simplecov'
5
- require 'coveralls'
6
4
  require 'byebug' unless ENV['TRAVIS']
7
5
 
8
6
  ENV["RAILS_ENV"] ||= "test"
9
7
 
10
- SimpleCov.formatter = Coveralls::SimpleCov::Formatter
11
- SimpleCov.start('rails') do
12
- add_filter '/.internal_test_app'
13
- add_filter '/lib/generators'
14
- add_filter '/spec'
15
- add_filter '/tasks'
16
- add_filter '/lib/qa/version.rb'
17
- add_filter '/lib/qa/engine.rb'
18
- end
19
- SimpleCov.command_name 'spec'
20
-
21
8
  EngineCart.load_application!
22
- Coveralls.wear!
23
9
 
24
10
  require 'rspec/rails'
25
11
  require 'webmock/rspec'
@@ -2,4 +2,17 @@
2
2
 
3
3
  group :development do
4
4
  gem 'linkeddata'
5
+ if ENV['RAILS_VERSION'] =~ /^6\.1\./ && ENV['RUBY_VERSION'] =~ /^3\.1\./
6
+ # Ruby 3.0 comes with Psych 3, while Ruby 3.1 comes with Psych 4,
7
+ # which has a major breaking change (diff 3.3.2 → 4.0.0).
8
+ # See: https://bugs.ruby-lang.org/issues/17866
9
+ # See also: https://stackoverflow.com/questions/71191685/visit-psych-nodes-alias-unknown-alias-default-psychbadalias/71192990#71192990
10
+ gem 'psych', '< 4'
11
+ # opt into mail 2.8.0.rc1 so we get extra dependencies
12
+ # Once mail 2.8.0 final is released this will not be required.
13
+ # https://github.com/mikel/mail/pull/1472
14
+ gem "mail", ">= 2.8.0.rc1"
15
+ # See https://stackoverflow.com/questions/70500220/rails-7-ruby-3-1-loaderror-cannot-load-such-file-net-smtp
16
+ gem 'net-smtp', require: false
17
+ end
5
18
  end
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: 5.7.0
4
+ version: 5.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Anderson
@@ -16,7 +16,7 @@ authors:
16
16
  autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
- date: 2021-11-04 00:00:00.000000000 Z
19
+ date: 2022-07-27 00:00:00.000000000 Z
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
22
  name: activerecord-import
@@ -50,16 +50,22 @@ dependencies:
50
50
  name: faraday
51
51
  requirement: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - ">="
53
+ - - "<"
54
54
  - !ruby/object:Gem::Version
55
- version: '0'
55
+ version: '3.0'
56
+ - - "!="
57
+ - !ruby/object:Gem::Version
58
+ version: 2.0.0
56
59
  type: :runtime
57
60
  prerelease: false
58
61
  version_requirements: !ruby/object:Gem::Requirement
59
62
  requirements:
60
- - - ">="
63
+ - - "<"
61
64
  - !ruby/object:Gem::Version
62
- version: '0'
65
+ version: '3.0'
66
+ - - "!="
67
+ - !ruby/object:Gem::Version
68
+ version: 2.0.0
63
69
  - !ruby/object:Gem::Dependency
64
70
  name: geocoder
65
71
  requirement: !ruby/object:Gem::Requirement
@@ -142,14 +148,20 @@ dependencies:
142
148
  requirements:
143
149
  - - "~>"
144
150
  - !ruby/object:Gem::Version
145
- version: 3.0.0
151
+ version: '5.0'
152
+ - - ">="
153
+ - !ruby/object:Gem::Version
154
+ version: 5.0.2
146
155
  type: :development
147
156
  prerelease: false
148
157
  version_requirements: !ruby/object:Gem::Requirement
149
158
  requirements:
150
159
  - - "~>"
151
160
  - !ruby/object:Gem::Version
152
- version: 3.0.0
161
+ version: '5.0'
162
+ - - ">="
163
+ - !ruby/object:Gem::Version
164
+ version: 5.0.2
153
165
  - !ruby/object:Gem::Dependency
154
166
  name: rails
155
167
  requirement: !ruby/object:Gem::Requirement
@@ -260,20 +272,6 @@ dependencies:
260
272
  - - ">="
261
273
  - !ruby/object:Gem::Version
262
274
  version: '0'
263
- - !ruby/object:Gem::Dependency
264
- name: simplecov
265
- requirement: !ruby/object:Gem::Requirement
266
- requirements:
267
- - - ">="
268
- - !ruby/object:Gem::Version
269
- version: '0'
270
- type: :development
271
- prerelease: false
272
- version_requirements: !ruby/object:Gem::Requirement
273
- requirements:
274
- - - ">="
275
- - !ruby/object:Gem::Version
276
- version: '0'
277
275
  - !ruby/object:Gem::Dependency
278
276
  name: sqlite3
279
277
  requirement: !ruby/object:Gem::Requirement
@@ -371,6 +369,7 @@ files:
371
369
  - app/services/qa/linked_data/performance_data_service.rb
372
370
  - app/services/qa/linked_data/request_header_service.rb
373
371
  - app/services/qa/linked_data/response_header_service.rb
372
+ - app/services/qa/pagination_service.rb
374
373
  - app/views/layouts/qa/application.html.erb
375
374
  - config/authorities.yml
376
375
  - config/authorities/linked_data/loc.json
@@ -378,6 +377,7 @@ files:
378
377
  - config/authorities/states.yml
379
378
  - config/initializers/authorities.rb
380
379
  - config/initializers/linked_data_authorities.rb
380
+ - config/initializers/mime_types.rb
381
381
  - config/locales/qa.en.yml
382
382
  - config/oclcts-authorities.yml
383
383
  - config/routes.rb
@@ -610,6 +610,7 @@ files:
610
610
  - spec/services/linked_data/performance_data_service_spec.rb
611
611
  - spec/services/linked_data/request_header_service_spec.rb
612
612
  - spec/services/linked_data/response_header_service_spec.rb
613
+ - spec/services/pagination_service_spec.rb
613
614
  - spec/spec_helper.rb
614
615
  - spec/support/matchers/include_hash.rb
615
616
  - spec/test_app_templates/Gemfile.extra
@@ -633,155 +634,156 @@ required_rubygems_version: !ruby/object:Gem::Requirement
633
634
  - !ruby/object:Gem::Version
634
635
  version: '0'
635
636
  requirements: []
636
- rubygems_version: 3.0.8
637
+ rubygems_version: 3.2.33
637
638
  signing_key:
638
639
  specification_version: 4
639
640
  summary: You should question your authorities.
640
641
  test_files:
641
- - spec/spec_helper.rb
642
+ - spec/controllers/linked_data_terms_controller_spec.rb
643
+ - spec/controllers/terms_controller_spec.rb
642
644
  - spec/features/linked_data/language_spec.rb
643
- - spec/models/linked_data/config/context_map_spec.rb
644
- - spec/models/linked_data/config/context_property_map_spec.rb
645
- - spec/models/iri_template/variable_map_spec.rb
646
- - spec/models/iri_template/url_config_spec.rb
647
- - spec/models/subject_mesh_term_spec.rb
648
- - spec/requests/cors_headers_spec.rb
649
- - spec/support/matchers/include_hash.rb
650
- - spec/test_app_templates/lib/generators/test_app_generator.rb
651
- - spec/test_app_templates/Gemfile.extra
652
- - spec/lib/tasks/mesh.rake_spec.rb
653
- - spec/lib/configuration_spec.rb
654
- - spec/lib/authorities_loc_subauthorities.rb
655
- - spec/lib/mesh_data_parser_spec.rb
656
- - spec/lib/authorities/linked_data/config_spec.rb
657
- - spec/lib/authorities/linked_data/search_config_spec.rb
658
- - spec/lib/authorities/linked_data/search_query_spec.rb
659
- - spec/lib/authorities/linked_data/term_config_spec.rb
660
- - spec/lib/authorities/linked_data/find_term_spec.rb
661
- - spec/lib/authorities/linked_data/generic_authority_spec.rb
662
- - spec/lib/authorities/loc_spec.rb
663
- - spec/lib/authorities/tgnlang_spec.rb
664
- - spec/lib/authorities/crossref_spec.rb
665
- - spec/lib/authorities/oclcts_spec.rb
666
- - spec/lib/authorities/local/file_based_authority_spec.rb
667
- - spec/lib/authorities/local/table_based_authority_spec.rb
668
- - spec/lib/authorities/local/mysql_table_based_authority_spec.rb
669
- - spec/lib/authorities/space_fix_encoder.rb
670
- - spec/lib/authorities/assign_fast_spec.rb
671
- - spec/lib/authorities/getty/tgn_spec.rb
672
- - spec/lib/authorities/getty/ulan_spec.rb
673
- - spec/lib/authorities/getty/aat_spec.rb
674
- - spec/lib/authorities/discogs_spec.rb
675
- - spec/lib/authorities/mesh_spec.rb
676
- - spec/lib/authorities/local_spec.rb
677
- - spec/lib/authorities/discogs/generic_authority_spec.rb
678
- - spec/lib/authorities/geonames_spec.rb
679
- - spec/lib/authorities/base_spec.rb
680
- - spec/lib/authorities/getty_spec.rb
681
- - spec/lib/services/rdf_authority_parser_spec.rb
682
- - spec/fixtures/lod_lang_search_enesfrde.rdf.xml
683
- - spec/fixtures/oclcts-response-mesh-3.txt
684
- - spec/fixtures/discogs-search-response-set-record.json
685
- - spec/fixtures/loc-names-response.txt
686
- - spec/fixtures/oclcts-response-mesh-2.txt
687
- - spec/fixtures/lod_loc_term_bad_id.rdf.xml
688
645
  - spec/fixtures/aat-response.txt
689
- - spec/fixtures/journals-result.json
690
- - spec/fixtures/discogs-search-response-no-subauth.json
691
- - spec/fixtures/lod_lang_search_fr.rdf.xml
692
- - spec/fixtures/oclcts-response-mesh-1.txt
693
- - spec/fixtures/lod_lang_term_fr.rdf.xml
694
- - spec/fixtures/discogs-search-response-no-auth.json
695
- - spec/fixtures/lod_3_ranked_varying_preds.nt
696
- - spec/fixtures/lod_lang_search_filtering.nt
697
- - spec/fixtures/discogs-find-response-jsonld-release.json
698
- - spec/fixtures/funders-noquery.json
699
- - spec/fixtures/lod_lang_term_enfrde.rdf.xml
700
- - spec/fixtures/assign-fast-oneresult.json
701
- - spec/fixtures/discogs-id-not-found-master.json
702
- - spec/fixtures/getty-aat-find-response.json
703
- - spec/fixtures/lod_lang_term_enfr_noalt.rdf.xml
646
+ - spec/fixtures/assign-fast-noheader.json
704
647
  - spec/fixtures/assign-fast-noresults.json
705
- - spec/fixtures/discogs-search-response-per-page.json
706
- - spec/fixtures/getty-error-response.txt
707
- - spec/fixtures/lod_loc_term_found.rdf.xml
708
- - spec/fixtures/lod_lang_term_enfr.rdf.xml
648
+ - spec/fixtures/assign-fast-oneresult.json
709
649
  - spec/fixtures/assign-fast-topical-result.json
710
- - spec/fixtures/getty-ulan-find-response.json
711
- - spec/fixtures/loc-subjects-response.txt
650
+ - spec/fixtures/authorities/authority_A.yml
651
+ - spec/fixtures/authorities/authority_B.yml
652
+ - spec/fixtures/authorities/authority_C.yml
653
+ - spec/fixtures/authorities/authority_D.yml
654
+ - spec/fixtures/authorities/authority_U.yml
655
+ - spec/fixtures/authorities/linked_data/lod_encoding_config.json
656
+ - spec/fixtures/authorities/linked_data/lod_full_config.json
657
+ - spec/fixtures/authorities/linked_data/lod_full_config_1_0.json
658
+ - spec/fixtures/authorities/linked_data/lod_lang_defaults.json
659
+ - spec/fixtures/authorities/linked_data/lod_lang_multi_defaults.json
660
+ - spec/fixtures/authorities/linked_data/lod_lang_no_defaults.json
661
+ - spec/fixtures/authorities/linked_data/lod_lang_param.json
662
+ - spec/fixtures/authorities/linked_data/lod_min_config.json
663
+ - spec/fixtures/authorities/linked_data/lod_search_only_config.json
664
+ - spec/fixtures/authorities/linked_data/lod_sort.json
665
+ - spec/fixtures/authorities/linked_data/lod_term_id_param_config.json
666
+ - spec/fixtures/authorities/linked_data/lod_term_only_config.json
667
+ - spec/fixtures/authorities/linked_data/lod_term_uri_param_config.json
712
668
  - spec/fixtures/discogs-find-response-json.json
713
- - spec/fixtures/loc-subject-find-response.txt
714
- - spec/fixtures/lod_oclc_all_query_3_results.rdf.xml
715
- - spec/fixtures/lod_2_ranked_2_unranked.nt
669
+ - spec/fixtures/discogs-find-response-jsonld-master.json
670
+ - spec/fixtures/discogs-find-response-jsonld-release.json
671
+ - spec/fixtures/discogs-id-matches-master.json
672
+ - spec/fixtures/discogs-id-matches-release.json
673
+ - spec/fixtures/discogs-id-not-found-master.json
674
+ - spec/fixtures/discogs-id-not-found-release.json
675
+ - spec/fixtures/discogs-search-response-no-auth.json
676
+ - spec/fixtures/discogs-search-response-no-subauth.json
677
+ - spec/fixtures/discogs-search-response-per-page.json
678
+ - spec/fixtures/discogs-search-response-set-record.json
679
+ - spec/fixtures/discogs-search-response-subauth.json
680
+ - spec/fixtures/funders-find-response.json
681
+ - spec/fixtures/funders-noquery.json
716
682
  - spec/fixtures/funders-noresults.json
683
+ - spec/fixtures/funders-result.json
684
+ - spec/fixtures/geonames-find-response.json
685
+ - spec/fixtures/geonames-response.json
686
+ - spec/fixtures/getty-aat-find-response.json
687
+ - spec/fixtures/getty-error-response.txt
717
688
  - spec/fixtures/getty-tgn-find-response.json
718
- - spec/fixtures/lod_lang_search_enfr.rdf.xml
689
+ - spec/fixtures/getty-ulan-find-response.json
719
690
  - spec/fixtures/journals-find-response-two-issn.json
720
- - spec/fixtures/mesh.txt
721
- - spec/fixtures/discogs-search-response-subauth.json
722
- - spec/fixtures/lod_term_with_blanknode_objects.nt
723
- - spec/fixtures/geonames-find-response.json
724
- - spec/fixtures/lod_oclc_personalName_query_3_results.rdf.xml
725
- - spec/fixtures/loc-response.txt
726
- - spec/fixtures/discogs-id-not-found-release.json
727
- - spec/fixtures/funders-find-response.json
728
- - spec/fixtures/lexvo_snippet.rdf.xml
729
691
  - spec/fixtures/journals-find-response.json
730
- - spec/fixtures/discogs-id-matches-master.json
731
- - spec/fixtures/discogs-find-response-jsonld-master.json
692
+ - spec/fixtures/journals-noquery.json
693
+ - spec/fixtures/journals-noresults.json
694
+ - spec/fixtures/journals-result.json
695
+ - spec/fixtures/lexvo_snippet.rdf.xml
696
+ - spec/fixtures/loc-names-response.txt
697
+ - spec/fixtures/loc-response.txt
698
+ - spec/fixtures/loc-subject-find-response.txt
699
+ - spec/fixtures/loc-subjects-response.txt
700
+ - spec/fixtures/lod_2_ranked_2_unranked.nt
701
+ - spec/fixtures/lod_3_ranked_varying_preds.nt
732
702
  - spec/fixtures/lod_lang_search_en.rdf.xml
703
+ - spec/fixtures/lod_lang_search_enesfrde.rdf.xml
704
+ - spec/fixtures/lod_lang_search_enfr.rdf.xml
705
+ - spec/fixtures/lod_lang_search_enfrde.rdf.xml
706
+ - spec/fixtures/lod_lang_search_filtering.nt
707
+ - spec/fixtures/lod_lang_search_fr.rdf.xml
708
+ - spec/fixtures/lod_lang_search_sv.rdf.xml
733
709
  - spec/fixtures/lod_lang_term_en.rdf.xml
734
- - spec/fixtures/journals-noresults.json
735
- - spec/fixtures/discogs-id-matches-release.json
736
- - spec/fixtures/journals-noquery.json
710
+ - spec/fixtures/lod_lang_term_enfr.rdf.xml
711
+ - spec/fixtures/lod_lang_term_enfr_noalt.rdf.xml
712
+ - spec/fixtures/lod_lang_term_enfrde.rdf.xml
713
+ - spec/fixtures/lod_lang_term_fr.rdf.xml
714
+ - spec/fixtures/lod_loc_second_term_found.rdf.xml
715
+ - spec/fixtures/lod_loc_term_bad_id.rdf.xml
716
+ - spec/fixtures/lod_loc_term_found.rdf.xml
717
+ - spec/fixtures/lod_oclc_all_query_3_results.rdf.xml
718
+ - spec/fixtures/lod_oclc_personalName_query_3_results.rdf.xml
737
719
  - spec/fixtures/lod_oclc_query_no_results.rdf.xml
738
- - spec/fixtures/authorities/linked_data/lod_search_only_config.json
739
- - spec/fixtures/authorities/linked_data/lod_sort.json
740
- - spec/fixtures/authorities/linked_data/lod_min_config.json
741
- - spec/fixtures/authorities/linked_data/lod_encoding_config.json
742
- - spec/fixtures/authorities/linked_data/lod_term_id_param_config.json
743
- - spec/fixtures/authorities/linked_data/lod_lang_multi_defaults.json
744
- - spec/fixtures/authorities/linked_data/lod_full_config_1_0.json
745
- - spec/fixtures/authorities/linked_data/lod_lang_defaults.json
746
- - spec/fixtures/authorities/linked_data/lod_term_only_config.json
747
- - spec/fixtures/authorities/linked_data/lod_lang_no_defaults.json
748
- - spec/fixtures/authorities/linked_data/lod_term_uri_param_config.json
749
- - spec/fixtures/authorities/linked_data/lod_full_config.json
750
- - spec/fixtures/authorities/linked_data/lod_lang_param.json
751
- - spec/fixtures/authorities/authority_D.yml
752
- - spec/fixtures/authorities/authority_A.yml
753
- - spec/fixtures/authorities/authority_C.yml
754
- - spec/fixtures/authorities/authority_U.yml
755
- - spec/fixtures/authorities/authority_B.yml
756
- - spec/fixtures/geonames-response.json
757
- - spec/fixtures/tgn-response.txt
758
- - spec/fixtures/lod_oclc_term_found.rdf.xml
759
720
  - spec/fixtures/lod_oclc_term_bad_id.nt
721
+ - spec/fixtures/lod_oclc_term_found.rdf.xml
760
722
  - spec/fixtures/lod_search_with_blanknode_subjects.nt
761
- - spec/fixtures/assign-fast-noheader.json
762
- - spec/fixtures/lod_loc_second_term_found.rdf.xml
763
- - spec/fixtures/lod_lang_search_enfrde.rdf.xml
764
- - spec/fixtures/funders-result.json
765
- - spec/fixtures/lod_lang_search_sv.rdf.xml
723
+ - spec/fixtures/lod_term_with_blanknode_objects.nt
724
+ - spec/fixtures/mesh.txt
725
+ - spec/fixtures/oclcts-response-mesh-1.txt
726
+ - spec/fixtures/oclcts-response-mesh-2.txt
727
+ - spec/fixtures/oclcts-response-mesh-3.txt
728
+ - spec/fixtures/tgn-response.txt
766
729
  - spec/fixtures/ulan-response.txt
730
+ - spec/lib/authorities/assign_fast_spec.rb
731
+ - spec/lib/authorities/base_spec.rb
732
+ - spec/lib/authorities/crossref_spec.rb
733
+ - spec/lib/authorities/discogs/generic_authority_spec.rb
734
+ - spec/lib/authorities/discogs_spec.rb
735
+ - spec/lib/authorities/geonames_spec.rb
736
+ - spec/lib/authorities/getty/aat_spec.rb
737
+ - spec/lib/authorities/getty/tgn_spec.rb
738
+ - spec/lib/authorities/getty/ulan_spec.rb
739
+ - spec/lib/authorities/getty_spec.rb
740
+ - spec/lib/authorities/linked_data/config_spec.rb
741
+ - spec/lib/authorities/linked_data/find_term_spec.rb
742
+ - spec/lib/authorities/linked_data/generic_authority_spec.rb
743
+ - spec/lib/authorities/linked_data/search_config_spec.rb
744
+ - spec/lib/authorities/linked_data/search_query_spec.rb
745
+ - spec/lib/authorities/linked_data/term_config_spec.rb
746
+ - spec/lib/authorities/loc_spec.rb
747
+ - spec/lib/authorities/local/file_based_authority_spec.rb
748
+ - spec/lib/authorities/local/mysql_table_based_authority_spec.rb
749
+ - spec/lib/authorities/local/table_based_authority_spec.rb
750
+ - spec/lib/authorities/local_spec.rb
751
+ - spec/lib/authorities/mesh_spec.rb
752
+ - spec/lib/authorities/oclcts_spec.rb
753
+ - spec/lib/authorities/space_fix_encoder.rb
754
+ - spec/lib/authorities/tgnlang_spec.rb
755
+ - spec/lib/authorities_loc_subauthorities.rb
756
+ - spec/lib/configuration_spec.rb
757
+ - spec/lib/mesh_data_parser_spec.rb
758
+ - spec/lib/services/rdf_authority_parser_spec.rb
759
+ - spec/lib/tasks/mesh.rake_spec.rb
760
+ - spec/models/iri_template/url_config_spec.rb
761
+ - spec/models/iri_template/variable_map_spec.rb
762
+ - spec/models/linked_data/config/context_map_spec.rb
763
+ - spec/models/linked_data/config/context_property_map_spec.rb
764
+ - spec/models/subject_mesh_term_spec.rb
765
+ - spec/requests/cors_headers_spec.rb
767
766
  - spec/routing/linked_data_route_spec.rb
768
767
  - spec/routing/route_spec.rb
769
- - spec/controllers/terms_controller_spec.rb
770
- - spec/controllers/linked_data_terms_controller_spec.rb
771
- - spec/services/linked_data/request_header_service_spec.rb
768
+ - spec/services/iri_template_service_spec.rb
772
769
  - spec/services/linked_data/authority_service_spec.rb
773
- - spec/services/linked_data/ldpath_service_spec.rb
770
+ - spec/services/linked_data/authority_url_service_spec.rb
771
+ - spec/services/linked_data/deep_sort_service_spec.rb
774
772
  - spec/services/linked_data/graph_service_spec.rb
773
+ - spec/services/linked_data/language_service_spec.rb
775
774
  - spec/services/linked_data/language_sort_service_spec.rb
775
+ - spec/services/linked_data/ldpath_service_spec.rb
776
+ - spec/services/linked_data/mapper/context_mapper_service_spec.rb
776
777
  - spec/services/linked_data/mapper/graph_ldpath_mapper_service_spec.rb
777
- - spec/services/linked_data/mapper/term_results_mapper_service_spec.rb
778
- - spec/services/linked_data/mapper/search_results_mapper_service_spec.rb
779
778
  - spec/services/linked_data/mapper/graph_mapper_service_spec.rb
780
- - spec/services/linked_data/mapper/context_mapper_service_spec.rb
781
779
  - spec/services/linked_data/mapper/graph_predicate_mapper_service_spec.rb
782
- - spec/services/linked_data/deep_sort_service_spec.rb
780
+ - spec/services/linked_data/mapper/search_results_mapper_service_spec.rb
781
+ - spec/services/linked_data/mapper/term_results_mapper_service_spec.rb
783
782
  - spec/services/linked_data/performance_data_service_spec.rb
784
- - spec/services/linked_data/language_service_spec.rb
785
- - spec/services/linked_data/authority_url_service_spec.rb
783
+ - spec/services/linked_data/request_header_service_spec.rb
786
784
  - spec/services/linked_data/response_header_service_spec.rb
787
- - spec/services/iri_template_service_spec.rb
785
+ - spec/services/pagination_service_spec.rb
786
+ - spec/spec_helper.rb
787
+ - spec/support/matchers/include_hash.rb
788
+ - spec/test_app_templates/Gemfile.extra
789
+ - spec/test_app_templates/lib/generators/test_app_generator.rb