spotlight-dor-resources 0.0.6 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c130b41c0a1a72df4461aeb827bc66f7959244f6
4
- data.tar.gz: 2c91800eb334e092f90e5cb290fa69ace4163b0e
3
+ metadata.gz: 8df55f329be83de6c7ad4eded72dab44cb457888
4
+ data.tar.gz: d38a0f5e00576a446e71ce1d6ea77cd3276aefc3
5
5
  SHA512:
6
- metadata.gz: e8ab91d1840f91f56a32a6eefe3d249fb7727fa985aad7324db746d805a3e3c7c2b02ca06e8ac1f49d5fad5ca97645ea107663c9a4cb984e14b51dc03d525050
7
- data.tar.gz: 812b4522e38b815d846ce4a240a0792c64cd2b3139895a990d195eb938882828970c6c533ee61f35dc196e591798b8c06dd80466f7fe9a3ff6a34b382f7d73ed
6
+ metadata.gz: 010cb19a2fe3c6c2d16753685675e54de632acbf16c40babc1cce108a6aea2d15ef85220345c3e056eeeb22ae6ace6496f22e556d082408b9de8aef6718db12c
7
+ data.tar.gz: 7060e3540e2e950b013d76f70263748eb461d0207b68e681fdcd46fba366c284d94d3b3c384b6bebc3415b550dd154248e1644a772a44fa8c4c14b08fdccc9c2
data/.travis.yml CHANGED
@@ -2,7 +2,7 @@ notifications:
2
2
  email: false
3
3
 
4
4
  rvm:
5
- - 2.2.2
5
+ - 2.2.3
6
6
 
7
7
  env:
8
8
  global:
@@ -1,19 +1,36 @@
1
1
  module Spotlight::Resources
2
2
  # Base Resource indexer for objects in DOR
3
3
  class DorResource < Spotlight::Resource
4
+ include ActiveSupport::Benchmarkable
5
+
4
6
  ##
5
- # Generate solr documents for the DOR resources identified by this object
7
+ # Generate solr documents for the DOR resources identified by this object.
6
8
  #
7
9
  # @return [Enumerator] an enumerator of solr document hashes for indexing
8
- def to_solr
9
- return to_enum :to_solr unless block_given?
10
+ # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
11
+ def to_solr(&block)
12
+ return to_enum(:to_solr) { indexable_resources.size } unless block_given?
13
+
14
+ # We use the Parallel gem to support parallel processing of the collection,
15
+ # but need to jump through some hoops to make it yield an enumerable in the end.
16
+ #
17
+ # Here, we create a hook that simply yields the result to the enumerable. We configure
18
+ # this as a 'finish' hook, which Parallel will run on the main process.
19
+ yield_to_enum = ->(_item, _i, result) { block.call(result) }
10
20
 
11
- base_doc = super
21
+ size = indexable_resources.size
12
22
 
13
- indexable_resources.each do |res|
14
- yield base_doc.merge(to_solr_document(res))
23
+ benchmark "Indexing resource #{inspect} (est. #{size} items)" do
24
+ base_doc = super
25
+
26
+ Parallel.each_with_index(indexable_resources, parallel_options.merge(finish: yield_to_enum)) do |res, idx|
27
+ benchmark "Indexing item #{res.druid} in resource #{id} (#{idx} / #{size})" do
28
+ base_doc.merge(to_solr_document(res))
29
+ end
30
+ end
15
31
  end
16
32
  end
33
+ # rubocop:enable Metrics/AbcSize, Metrics/MethodLength
17
34
 
18
35
  def resource
19
36
  @resource ||= Spotlight::Dor::Resources.indexer.resource doc_id
@@ -27,7 +44,7 @@ module Spotlight::Resources
27
44
  #
28
45
  # @return [Enumerator] an enumerator of resources to index
29
46
  def indexable_resources
30
- return to_enum(:indexable_resources) unless block_given?
47
+ return to_enum(:indexable_resources) { 1 + resource.items.size } unless block_given?
31
48
 
32
49
  yield resource
33
50
 
@@ -44,5 +61,15 @@ module Spotlight::Resources
44
61
  def to_solr_document(resource)
45
62
  Spotlight::Dor::Resources.indexer.solr_document(resource)
46
63
  end
64
+
65
+ ##
66
+ # Write any logs (or benchmarking information) from this class to the gdor logs
67
+ def logger
68
+ Spotlight::Dor::Resources.indexer.logger
69
+ end
70
+
71
+ def parallel_options
72
+ Spotlight::Dor::Resources::Engine.config.parallel_options
73
+ end
47
74
  end
48
75
  end
@@ -2,7 +2,7 @@ module Spotlight
2
2
  module Dor
3
3
  # :nodoc:
4
4
  module Resources
5
- VERSION = '0.0.6'
5
+ VERSION = '0.1.0'
6
6
  end
7
7
  end
8
8
  end
@@ -91,7 +91,7 @@ describe Spotlight::Resources::Purl do
91
91
  end
92
92
 
93
93
  it 'provides a solr document for the items too' do
94
- item = double
94
+ item = double(druid: 'xyz')
95
95
  allow(subject.resource).to receive(:items).and_return([item])
96
96
  expect(Spotlight::Dor::Resources.indexer).to receive(:solr_document).with(subject.resource).and_return(collection: true)
97
97
  expect(Spotlight::Dor::Resources.indexer).to receive(:solr_document).with(item).and_return(item: true)
@@ -70,7 +70,7 @@ describe Spotlight::Resources::Searchworks do
70
70
  end
71
71
 
72
72
  it 'provides a solr document for the items too' do
73
- item = double
73
+ item = double(druid: 'xyz')
74
74
  allow(subject.resource).to receive(:items).and_return([item])
75
75
  expect(Spotlight::Dor::Resources.indexer).to receive(:solr_document).with(subject.resource).and_return(collection: true)
76
76
  expect(Spotlight::Dor::Resources.indexer).to receive(:solr_document).with(item).and_return(item: true)
@@ -1,7 +1,7 @@
1
1
  require 'rails/generators'
2
2
 
3
3
  class TestAppGenerator < Rails::Generators::Base
4
- source_root "../spec/test_app_templates"
4
+ source_root File.expand_path("../../../../spec/test_app_templates", __FILE__)
5
5
 
6
6
  def add_gems
7
7
  gem 'blacklight', '~> 5.1'
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  Date:
22
- - Fri, 30 Oct 2015 14:05:58 GMT
22
+ - Tue, 10 Nov 2015 20:02:54 GMT
23
23
  Server:
24
24
  - Apache/2.2.15 (CentOS)
25
25
  Cache-Control:
@@ -33,9 +33,9 @@ http_interactions:
33
33
  X-Content-Type-Options:
34
34
  - nosniff
35
35
  X-Runtime:
36
- - '0.009352'
36
+ - '0.007425'
37
37
  X-Request-Id:
38
- - 85356f50-b67e-4b69-8b5f-6eafa322f5fd
38
+ - d5753bb0-f4b7-4126-a356-19986744b9e2
39
39
  X-Powered-By:
40
40
  - Phusion Passenger 5.0.16
41
41
  Strict-Transport-Security:
@@ -129,7 +129,7 @@ http_interactions:
129
129
  <ReleaseData/>
130
130
  </publicObject>
131
131
  http_version:
132
- recorded_at: Fri, 30 Oct 2015 14:05:58 GMT
132
+ recorded_at: Tue, 10 Nov 2015 20:02:53 GMT
133
133
  - request:
134
134
  method: get
135
135
  uri: https://purl.stanford.edu/xf680rd3068.xml
@@ -149,7 +149,7 @@ http_interactions:
149
149
  message: OK
150
150
  headers:
151
151
  Date:
152
- - Fri, 30 Oct 2015 14:05:58 GMT
152
+ - Tue, 10 Nov 2015 20:02:54 GMT
153
153
  Server:
154
154
  - Apache/2.2.15 (CentOS)
155
155
  Cache-Control:
@@ -163,9 +163,9 @@ http_interactions:
163
163
  X-Content-Type-Options:
164
164
  - nosniff
165
165
  X-Runtime:
166
- - '0.003438'
166
+ - '0.006559'
167
167
  X-Request-Id:
168
- - de993014-8374-4a85-a6bf-659e4c66996a
168
+ - 2ec12915-245b-4b41-a7ab-27e18fc8d8ea
169
169
  X-Powered-By:
170
170
  - Phusion Passenger 5.0.16
171
171
  Strict-Transport-Security:
@@ -259,7 +259,7 @@ http_interactions:
259
259
  <ReleaseData/>
260
260
  </publicObject>
261
261
  http_version:
262
- recorded_at: Fri, 30 Oct 2015 14:05:58 GMT
262
+ recorded_at: Tue, 10 Nov 2015 20:02:53 GMT
263
263
  - request:
264
264
  method: get
265
265
  uri: https://purl.stanford.edu/xf680rd3068.xml
@@ -279,7 +279,7 @@ http_interactions:
279
279
  message: OK
280
280
  headers:
281
281
  Date:
282
- - Fri, 30 Oct 2015 14:05:58 GMT
282
+ - Tue, 10 Nov 2015 20:02:54 GMT
283
283
  Server:
284
284
  - Apache/2.2.15 (CentOS)
285
285
  Cache-Control:
@@ -293,9 +293,9 @@ http_interactions:
293
293
  X-Content-Type-Options:
294
294
  - nosniff
295
295
  X-Runtime:
296
- - '0.024469'
296
+ - '0.007618'
297
297
  X-Request-Id:
298
- - 55587aa0-8808-4d88-8401-5a23f146ab8b
298
+ - 5de78377-6a49-4f6d-9fe5-267bf228b679
299
299
  X-Powered-By:
300
300
  - Phusion Passenger 5.0.16
301
301
  Strict-Transport-Security:
@@ -389,7 +389,7 @@ http_interactions:
389
389
  <ReleaseData/>
390
390
  </publicObject>
391
391
  http_version:
392
- recorded_at: Fri, 30 Oct 2015 14:05:59 GMT
392
+ recorded_at: Tue, 10 Nov 2015 20:02:53 GMT
393
393
  - request:
394
394
  method: get
395
395
  uri: https://purl.stanford.edu/xf680rd3068.xml
@@ -409,7 +409,7 @@ http_interactions:
409
409
  message: OK
410
410
  headers:
411
411
  Date:
412
- - Fri, 30 Oct 2015 14:05:59 GMT
412
+ - Tue, 10 Nov 2015 20:02:54 GMT
413
413
  Server:
414
414
  - Apache/2.2.15 (CentOS)
415
415
  Cache-Control:
@@ -423,9 +423,9 @@ http_interactions:
423
423
  X-Content-Type-Options:
424
424
  - nosniff
425
425
  X-Runtime:
426
- - '0.007237'
426
+ - '0.006278'
427
427
  X-Request-Id:
428
- - 39e44cd3-2775-4625-854e-20f5ff392066
428
+ - 89b2603c-b221-47e7-9572-94efcc11e757
429
429
  X-Powered-By:
430
430
  - Phusion Passenger 5.0.16
431
431
  Strict-Transport-Security:
@@ -519,7 +519,7 @@ http_interactions:
519
519
  <ReleaseData/>
520
520
  </publicObject>
521
521
  http_version:
522
- recorded_at: Fri, 30 Oct 2015 14:05:59 GMT
522
+ recorded_at: Tue, 10 Nov 2015 20:02:53 GMT
523
523
  - request:
524
524
  method: get
525
525
  uri: https://purl.stanford.edu/xf680rd3068.xml
@@ -539,7 +539,7 @@ http_interactions:
539
539
  message: OK
540
540
  headers:
541
541
  Date:
542
- - Fri, 30 Oct 2015 14:05:59 GMT
542
+ - Tue, 10 Nov 2015 20:02:54 GMT
543
543
  Server:
544
544
  - Apache/2.2.15 (CentOS)
545
545
  Cache-Control:
@@ -553,9 +553,9 @@ http_interactions:
553
553
  X-Content-Type-Options:
554
554
  - nosniff
555
555
  X-Runtime:
556
- - '0.003560'
556
+ - '0.006848'
557
557
  X-Request-Id:
558
- - e88b1ad9-b3fe-48a2-9cde-4acabf72a28a
558
+ - 9e8f1c01-8b08-479e-86f7-3b5802bca16c
559
559
  X-Powered-By:
560
560
  - Phusion Passenger 5.0.16
561
561
  Strict-Transport-Security:
@@ -649,7 +649,7 @@ http_interactions:
649
649
  <ReleaseData/>
650
650
  </publicObject>
651
651
  http_version:
652
- recorded_at: Fri, 30 Oct 2015 14:05:59 GMT
652
+ recorded_at: Tue, 10 Nov 2015 20:02:53 GMT
653
653
  - request:
654
654
  method: get
655
655
  uri: https://purl.stanford.edu/xf680rd3068.xml
@@ -669,7 +669,7 @@ http_interactions:
669
669
  message: OK
670
670
  headers:
671
671
  Date:
672
- - Fri, 30 Oct 2015 14:05:59 GMT
672
+ - Tue, 10 Nov 2015 20:02:54 GMT
673
673
  Server:
674
674
  - Apache/2.2.15 (CentOS)
675
675
  Cache-Control:
@@ -683,9 +683,9 @@ http_interactions:
683
683
  X-Content-Type-Options:
684
684
  - nosniff
685
685
  X-Runtime:
686
- - '0.009015'
686
+ - '0.008278'
687
687
  X-Request-Id:
688
- - d68d239f-6660-49e5-a019-0e06dc70cde4
688
+ - 2444d031-edff-4bd9-856a-46764cf01c77
689
689
  X-Powered-By:
690
690
  - Phusion Passenger 5.0.16
691
691
  Strict-Transport-Security:
@@ -779,10 +779,10 @@ http_interactions:
779
779
  <ReleaseData/>
780
780
  </publicObject>
781
781
  http_version:
782
- recorded_at: Fri, 30 Oct 2015 14:05:59 GMT
782
+ recorded_at: Tue, 10 Nov 2015 20:02:53 GMT
783
783
  - request:
784
784
  method: get
785
- uri: https://purl.stanford.edu/xf680rd3068.mods
785
+ uri: https://purl.stanford.edu/xf680rd3068.xml
786
786
  body:
787
787
  encoding: US-ASCII
788
788
  string: ''
@@ -799,7 +799,7 @@ http_interactions:
799
799
  message: OK
800
800
  headers:
801
801
  Date:
802
- - Fri, 30 Oct 2015 14:05:59 GMT
802
+ - Tue, 10 Nov 2015 20:02:54 GMT
803
803
  Server:
804
804
  - Apache/2.2.15 (CentOS)
805
805
  Cache-Control:
@@ -813,9 +813,139 @@ http_interactions:
813
813
  X-Content-Type-Options:
814
814
  - nosniff
815
815
  X-Runtime:
816
- - '0.021499'
816
+ - '0.005658'
817
+ X-Request-Id:
818
+ - c65ed0f4-7efb-4a65-91e5-d9a219e912d9
819
+ X-Powered-By:
820
+ - Phusion Passenger 5.0.16
821
+ Strict-Transport-Security:
822
+ - max-age=31536000; includeSubDomains
823
+ Last-Modified:
824
+ - Fri, 24 Apr 2015 18:45:21 GMT
825
+ Status:
826
+ - 200 OK
827
+ Transfer-Encoding:
828
+ - chunked
829
+ Content-Type:
830
+ - application/xml; charset=utf-8
831
+ body:
832
+ encoding: UTF-8
833
+ string: |
834
+ <?xml version="1.0" encoding="UTF-8"?>
835
+ <publicObject id="druid:xf680rd3068" published="2015-04-24T11:45:16-07:00">
836
+ <identityMetadata>
837
+ <sourceId source="sul">MISC_1855</sourceId>
838
+ <objectId>druid:xf680rd3068</objectId>
839
+ <objectCreator>DOR</objectCreator>
840
+ <objectLabel>Latin glossary : small manuscript fragment on vellum.</objectLabel>
841
+ <objectType>item</objectType>
842
+ <adminPolicy>druid:yg077np2529</adminPolicy>
843
+ <otherId name="catkey">10157160</otherId>
844
+ <otherId name="uuid">48b412d0-516c-11e3-bb66-0050569b3c3c</otherId>
845
+ <tag>Process : Content Type : Image</tag>
846
+ <tag>Project : Special Collections - Exhibitions</tag>
847
+ <tag>JIRA : PROJQUEUE-85</tag>
848
+ <tag>DPG : Medieval Manuscript Exhibition 2014</tag>
849
+ <tag>DPG : Curator Request : Jordan</tag>
850
+ <tag>Registered By : astrids</tag>
851
+ <tag>Remediated By : 4.14.4</tag>
852
+ </identityMetadata>
853
+ <contentMetadata type="image" objectId="xf680rd3068">
854
+ <resource type="image" sequence="1" id="xf680rd3068_1">
855
+ <label>Image 1</label>
856
+ <file id="xf680rd3068_00_0001.jp2" mimetype="image/jp2" size="887079">
857
+ <imageData width="1794" height="2627"/>
858
+ </file>
859
+ </resource>
860
+ <resource type="image" sequence="2" id="xf680rd3068_2">
861
+ <label>Image 2</label>
862
+ <file id="xf680rd3068_00_0002.jp2" mimetype="image/jp2" size="887064">
863
+ <imageData width="1794" height="2627"/>
864
+ </file>
865
+ </resource>
866
+ </contentMetadata>
867
+ <rightsMetadata>
868
+ <access type="discover">
869
+ <machine>
870
+ <world/>
871
+ </machine>
872
+ </access>
873
+ <access type="read">
874
+ <machine>
875
+ <world/>
876
+ </machine>
877
+ </access>
878
+ <use>
879
+ <human type="useAndReproduction">Property rights reside with the repository. Literary rights reside with the creators of the documents or their heirs. To obtain permission to publish or reproduce, please contact the Special Collections Public Services Librarian at speccollref@stanford.edu.</human>
880
+ </use>
881
+ <use>
882
+ <human type="creativeCommons"/>
883
+ <machine type="creativeCommons"/>
884
+ </use>
885
+ </rightsMetadata>
886
+ <rdf:RDF xmlns:fedora="info:fedora/fedora-system:def/relations-external#" xmlns:fedora-model="info:fedora/fedora-system:def/model#" xmlns:hydra="http://projecthydra.org/ns/relations#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
887
+ <rdf:Description rdf:about="info:fedora/druid:xf680rd3068">
888
+ <fedora:isMemberOf rdf:resource="info:fedora/druid:sk373nx0013"/>
889
+ <fedora:isMemberOfCollection rdf:resource="info:fedora/druid:sk373nx0013"/>
890
+ </rdf:Description>
891
+ </rdf:RDF>
892
+ <oai_dc:dc xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:srw_dc="info:srw/schema/1/dc-schema" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
893
+ <dc:title>Latin glossary : small manuscript fragment on vellum</dc:title>
894
+ <dc:date>1200-1299</dc:date>
895
+ <dc:date>13th century</dc:date>
896
+ <dc:language>lat</dc:language>
897
+ <dc:format>1 fragment, 96 x 151 mm.</dc:format>
898
+ <dc:description>Unidentified Latin vocabulary, this portion part of the letter M, with a total of 35 lemmata (a word or phrase that is glossed; headword).</dc:description>
899
+ <dc:rights>Open for research; material must be requested at least 24 hours in advance of intended use.</dc:rights>
900
+ <dc:description>Lower portion of vellum leaf, removed from a binding.</dc:description>
901
+ <dc:description>Script: professional gotica textualis, 2 columns, with a fair amount of abbreviations.</dc:description>
902
+ <dc:description type="acquisition">Purchased from Bonhams, 2013. Accession 2013-080.</dc:description>
903
+ <dc:description type="ownership">Previously in the Bernard M. Rosenthal collection; with Rosenthal's dealer description included with the manuscript, together with a note re previous ownership of Bernard Bischoff.</dc:description>
904
+ <dc:subject>Manuscripts, Latin (Medieval and modern)</dc:subject>
905
+ <dc:coverage>France</dc:coverage>
906
+ <dc:subject>Manuscripts, Latin (Medieval and modern)--France</dc:subject>
907
+ <dc:relation type="collection">Stanford University Libraries Special Collections, Manuscripts Division</dc:relation>
908
+ </oai_dc:dc>
909
+ <ReleaseData/>
910
+ </publicObject>
911
+ http_version:
912
+ recorded_at: Tue, 10 Nov 2015 20:02:53 GMT
913
+ - request:
914
+ method: get
915
+ uri: https://purl.stanford.edu/xf680rd3068.mods
916
+ body:
917
+ encoding: US-ASCII
918
+ string: ''
919
+ headers:
920
+ Accept-Encoding:
921
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
922
+ Accept:
923
+ - "*/*"
924
+ User-Agent:
925
+ - Ruby
926
+ response:
927
+ status:
928
+ code: 200
929
+ message: OK
930
+ headers:
931
+ Date:
932
+ - Tue, 10 Nov 2015 20:02:54 GMT
933
+ Server:
934
+ - Apache/2.2.15 (CentOS)
935
+ Cache-Control:
936
+ - max-age=0, private, must-revalidate
937
+ X-Xss-Protection:
938
+ - 1; mode=block
817
939
  X-Request-Id:
818
- - 3a61c05b-7d28-411e-94bf-c7a493d2bb15
940
+ - 2a50567b-490b-4840-a030-aca2b0082b36
941
+ Etag:
942
+ - '"37e08cb364489ba8b40e25f7e60ef051"'
943
+ X-Frame-Options:
944
+ - SAMEORIGIN
945
+ X-Runtime:
946
+ - '0.007788'
947
+ X-Content-Type-Options:
948
+ - nosniff
819
949
  X-Powered-By:
820
950
  - Phusion Passenger 5.0.16
821
951
  Strict-Transport-Security:
@@ -885,7 +1015,7 @@ http_interactions:
885
1015
  <accessCondition type="useAndReproduction">Property rights reside with the repository. Literary rights reside with the creators of the documents or their heirs. To obtain permission to publish or reproduce, please contact the Special Collections Public Services Librarian at speccollref@stanford.edu.</accessCondition>
886
1016
  </mods>
887
1017
  http_version:
888
- recorded_at: Fri, 30 Oct 2015 14:06:00 GMT
1018
+ recorded_at: Tue, 10 Nov 2015 20:02:53 GMT
889
1019
  - request:
890
1020
  method: get
891
1021
  uri: https://purl.stanford.edu/xf680rd3068.xml
@@ -905,7 +1035,7 @@ http_interactions:
905
1035
  message: OK
906
1036
  headers:
907
1037
  Date:
908
- - Fri, 30 Oct 2015 14:06:00 GMT
1038
+ - Tue, 10 Nov 2015 20:02:54 GMT
909
1039
  Server:
910
1040
  - Apache/2.2.15 (CentOS)
911
1041
  Cache-Control:
@@ -919,9 +1049,9 @@ http_interactions:
919
1049
  X-Content-Type-Options:
920
1050
  - nosniff
921
1051
  X-Runtime:
922
- - '0.013537'
1052
+ - '0.006246'
923
1053
  X-Request-Id:
924
- - da760230-9983-4cfa-ba90-59e3b85f715e
1054
+ - 71915f12-b921-45f7-9599-98efef27a72c
925
1055
  X-Powered-By:
926
1056
  - Phusion Passenger 5.0.16
927
1057
  Strict-Transport-Security:
@@ -1015,7 +1145,7 @@ http_interactions:
1015
1145
  <ReleaseData/>
1016
1146
  </publicObject>
1017
1147
  http_version:
1018
- recorded_at: Fri, 30 Oct 2015 14:06:00 GMT
1148
+ recorded_at: Tue, 10 Nov 2015 20:02:53 GMT
1019
1149
  - request:
1020
1150
  method: get
1021
1151
  uri: https://purl.stanford.edu/sk373nx0013.xml
@@ -1035,7 +1165,7 @@ http_interactions:
1035
1165
  message: OK
1036
1166
  headers:
1037
1167
  Date:
1038
- - Fri, 30 Oct 2015 14:06:00 GMT
1168
+ - Tue, 10 Nov 2015 20:02:54 GMT
1039
1169
  Server:
1040
1170
  - Apache/2.2.15 (CentOS)
1041
1171
  Cache-Control:
@@ -1049,9 +1179,9 @@ http_interactions:
1049
1179
  X-Content-Type-Options:
1050
1180
  - nosniff
1051
1181
  X-Runtime:
1052
- - '0.007240'
1182
+ - '0.007076'
1053
1183
  X-Request-Id:
1054
- - 6e1be167-0868-48a2-8128-fb908e2a74f0
1184
+ - 496e6a92-9df7-4c20-a8ea-6c1cea8b9337
1055
1185
  X-Powered-By:
1056
1186
  - Phusion Passenger 5.0.16
1057
1187
  Strict-Transport-Security:
@@ -1116,7 +1246,7 @@ http_interactions:
1116
1246
  <ReleaseData/>
1117
1247
  </publicObject>
1118
1248
  http_version:
1119
- recorded_at: Fri, 30 Oct 2015 14:06:00 GMT
1249
+ recorded_at: Tue, 10 Nov 2015 20:02:54 GMT
1120
1250
  - request:
1121
1251
  method: get
1122
1252
  uri: https://purl.stanford.edu/sk373nx0013.xml
@@ -1136,7 +1266,7 @@ http_interactions:
1136
1266
  message: OK
1137
1267
  headers:
1138
1268
  Date:
1139
- - Fri, 30 Oct 2015 14:06:00 GMT
1269
+ - Tue, 10 Nov 2015 20:02:54 GMT
1140
1270
  Server:
1141
1271
  - Apache/2.2.15 (CentOS)
1142
1272
  Cache-Control:
@@ -1150,9 +1280,9 @@ http_interactions:
1150
1280
  X-Content-Type-Options:
1151
1281
  - nosniff
1152
1282
  X-Runtime:
1153
- - '0.005477'
1283
+ - '0.007446'
1154
1284
  X-Request-Id:
1155
- - ebc9a403-3191-46c9-8c5f-cf545dd29e79
1285
+ - 3dd8585e-37a0-4c3b-8167-6820244a14ce
1156
1286
  X-Powered-By:
1157
1287
  - Phusion Passenger 5.0.16
1158
1288
  Strict-Transport-Security:
@@ -1217,5 +1347,5 @@ http_interactions:
1217
1347
  <ReleaseData/>
1218
1348
  </publicObject>
1219
1349
  http_version:
1220
- recorded_at: Fri, 30 Oct 2015 14:06:00 GMT
1221
- recorded_with: VCR 2.9.3
1350
+ recorded_at: Tue, 10 Nov 2015 20:02:54 GMT
1351
+ recorded_with: VCR 3.0.0