bento_search 1.2.2 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -13
- data/app/helpers/bento_search_helper.rb +1 -1
- data/app/search_engines/bento_search/scopus_engine.rb +0 -2
- data/config/locales/en.yml +2 -2
- data/lib/bento_search.rb +12 -0
- data/lib/bento_search/version.rb +1 -1
- data/test/dummy/config/environments/production.rb +1 -1
- data/test/dummy/config/environments/test.rb +3 -1
- data/test/dummy/log/test.log +102383 -0
- data/test/functional/bento_search/search_controller_test.rb +3 -2
- data/test/helper/bento_search_helper_test.rb +4 -4
- data/test/search_engines/search_engine_test.rb +5 -5
- data/test/vcr_cassettes/ebscohost/RILM_record_with_ISSN_in__jid__element.yml +207 -0
- metadata +37 -45
- data/test/integration/navigation_test.rb +0 -10
@@ -45,7 +45,8 @@ module BentoSearch
|
|
45
45
|
assert_template "bento_search/search/search"
|
46
46
|
|
47
47
|
# meta tag with count
|
48
|
-
|
48
|
+
meta_tag = assert_select("meta[itemprop=total_items][content]", :count => 1 )
|
49
|
+
assert_match /^\d+$/, meta_tag.attribute("content").text
|
49
50
|
end
|
50
51
|
|
51
52
|
test "failed search" do
|
@@ -60,7 +61,7 @@ module BentoSearch
|
|
60
61
|
assert_template "bento_search/search/search"
|
61
62
|
assert_template "bento_search/_search_error"
|
62
63
|
|
63
|
-
|
64
|
+
assert_select("meta[itemprop=total_items]", :count => 0)
|
64
65
|
end
|
65
66
|
|
66
67
|
|
@@ -64,8 +64,8 @@ class BentoSearchHelperTest < ActionView::TestCase
|
|
64
64
|
bento_search(engine, :query => "QUERY")
|
65
65
|
|
66
66
|
assert_select("div.bento_item", 10).each_with_index do |node, i|
|
67
|
-
node
|
68
|
-
node
|
67
|
+
assert_select node, "*", /QUERY/
|
68
|
+
assert_select node, "*", /#{i +1 }/
|
69
69
|
end
|
70
70
|
end
|
71
71
|
|
@@ -77,8 +77,8 @@ class BentoSearchHelperTest < ActionView::TestCase
|
|
77
77
|
bento_search("test_engine", :query => "QUERY")
|
78
78
|
|
79
79
|
assert_select("div.bento_item", 10).each_with_index do |node, i|
|
80
|
-
node
|
81
|
-
node
|
80
|
+
assert_select node, "*", /QUERY/
|
81
|
+
assert_select node, "*", /#{i +1 }/
|
82
82
|
end
|
83
83
|
end
|
84
84
|
|
@@ -27,7 +27,7 @@ class SearchEngineTest < ActiveSupport::TestCase
|
|
27
27
|
test "nested required config key" do
|
28
28
|
requires_class = Class.new(MockEngine) do
|
29
29
|
def self.required_configuration
|
30
|
-
["required.
|
30
|
+
["required.mykey"]
|
31
31
|
end
|
32
32
|
end
|
33
33
|
|
@@ -40,11 +40,11 @@ class SearchEngineTest < ActiveSupport::TestCase
|
|
40
40
|
end
|
41
41
|
|
42
42
|
assert_raise ArgumentError do
|
43
|
-
requires_class.new(:required => {:
|
43
|
+
requires_class.new(:required => {:mykey => nil})
|
44
44
|
end
|
45
45
|
|
46
46
|
assert_nothing_raised do
|
47
|
-
requires_class.new(:required => {:
|
47
|
+
requires_class.new(:required => {:mykey => "foo"})
|
48
48
|
end
|
49
49
|
end
|
50
50
|
|
@@ -60,7 +60,7 @@ class SearchEngineTest < ActiveSupport::TestCase
|
|
60
60
|
end
|
61
61
|
end
|
62
62
|
|
63
|
-
engine = @dummy_class.new( :two => "new", :array => ["one", "two"], :nested => {:two => "new"}, :required => {:
|
63
|
+
engine = @dummy_class.new( :two => "new", :array => ["one", "two"], :nested => {:two => "new"}, :required => {:mykey => "required key"} )
|
64
64
|
|
65
65
|
assert_kind_of Confstruct::Configuration, engine.configuration
|
66
66
|
assert_equal "default" , engine.configuration.one
|
@@ -104,7 +104,7 @@ class SearchEngineTest < ActiveSupport::TestCase
|
|
104
104
|
end
|
105
105
|
|
106
106
|
test "sets metadata on items" do
|
107
|
-
engine = MockEngine.new(:id => "foo", :for_display => {:
|
107
|
+
engine = MockEngine.new(:id => "foo", :for_display => {:mykey => "value", :decorator => "Foo"})
|
108
108
|
results = engine.search(:query => "cancer")
|
109
109
|
record = results.first
|
110
110
|
|
@@ -207,4 +207,211 @@ http_interactions:
|
|
207
207
|
\ </header>\r\n </rec>\r\n </records>\r\n </SearchResults>\r\n</searchResponse>"
|
208
208
|
http_version:
|
209
209
|
recorded_at: Mon, 22 Apr 2013 17:10:59 GMT
|
210
|
+
- request:
|
211
|
+
method: get
|
212
|
+
uri: http://eit.ebscohost.com/Services/SearchService.asmx/Search?db=rih&numrec=10&prof=DUMMY_PROFILE&pwd=DUMMY_PWD&query=%22Schumann%27s%20Dichterliebe%20and%20early%20Romantic%20poetics:%20Fragmentation%20of%20desire%22&sort=relevance
|
213
|
+
body:
|
214
|
+
encoding: US-ASCII
|
215
|
+
string: ''
|
216
|
+
headers: {}
|
217
|
+
response:
|
218
|
+
status:
|
219
|
+
code: 200
|
220
|
+
message: !binary |-
|
221
|
+
T0s=
|
222
|
+
headers:
|
223
|
+
!binary "Q2FjaGUtQ29udHJvbA==":
|
224
|
+
- !binary |-
|
225
|
+
cHJpdmF0ZQ==
|
226
|
+
!binary "Q29udGVudC1UeXBl":
|
227
|
+
- !binary |-
|
228
|
+
dGV4dC94bWw=
|
229
|
+
!binary "U2VydmVy":
|
230
|
+
- !binary |-
|
231
|
+
TWljcm9zb2Z0LUlJUy83LjU=
|
232
|
+
!binary "WC1Bc3BuZXQtVmVyc2lvbg==":
|
233
|
+
- !binary |-
|
234
|
+
NC4wLjMwMzE5
|
235
|
+
!binary "WC1Qb3dlcmVkLUJ5":
|
236
|
+
- !binary |-
|
237
|
+
QVNQLk5FVA==
|
238
|
+
!binary "RGF0ZQ==":
|
239
|
+
- !binary |-
|
240
|
+
TW9uLCAyMiBBcHIgMjAxMyAxNzoxMTowMCBHTVQ=
|
241
|
+
!binary "Q29udGVudC1MZW5ndGg=":
|
242
|
+
- !binary |-
|
243
|
+
MTM2Nzc=
|
244
|
+
body:
|
245
|
+
encoding: US-ASCII
|
246
|
+
string: ! "<?xml version=\"1.0\"?>\r\n<searchResponse xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"
|
247
|
+
xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\r\n <Hits xmlns=\"http://epnet.com/webservices/SearchService/Response/2007/07/\">4</Hits>\r\n
|
248
|
+
\ <Statistics xmlns=\"http://epnet.com/webservices/SearchService/Response/2007/07/\">\r\n
|
249
|
+
\ <Statistic>\r\n <Database>rih</Database>\r\n <Hits>4</Hits>\r\n
|
250
|
+
\ </Statistic>\r\n </Statistics>\r\n <SearchResults xmlns=\"http://epnet.com/webservices/SearchService/Response/2007/07/\">\r\n
|
251
|
+
\ <records xmlns=\"\">\r\n <rec recordID=\"1\">\r\n <pdfLink
|
252
|
+
/>\r\n <plink>http://search.ebscohost.com/login.aspx?direct=true&db=rih&AN=2002-08630-3&site=ehost-live&scope=site</plink>\r\n
|
253
|
+
\ <header shortDbName=\"rih\" uiTerm=\"2002-08630-3\" longDbName=\"RILM
|
254
|
+
\ Abstracts of Music Literature\" uiTag=\"AN\">\r\n <controlInfo>\r\n
|
255
|
+
\ <bkinfo>\r\n <aug />\r\n </bkinfo>\r\n
|
256
|
+
\ <revinfo>\r\n <rtl>Schumann's <i>Dichterliebe</i>
|
257
|
+
and early Romantic poetics: Fragmentation of desire</rtl>\r\n <aug>\r\n
|
258
|
+
\ <au type=\"reviewer\">Malin, Yonatan</au>\r\n </aug>\r\n
|
259
|
+
\ </revinfo>\r\n <dissinfo />\r\n <jinfo>\r\n
|
260
|
+
\ <jid type=\"issn\">01956167</jid>\r\n <jtl>Music
|
261
|
+
theory spectrum: The journal of the Society for Music Theory</jtl>\r\n <isbn
|
262
|
+
type=\"print\">01956167</isbn>\r\n </jinfo>\r\n <pubinfo>\r\n
|
263
|
+
\ <dt year=\"2006\" month=\"09\" day=\"01\" />\r\n <vid>28</vid>\r\n
|
264
|
+
\ <iid>2</iid>\r\n <place>United States</place>\r\n
|
265
|
+
\ </pubinfo>\r\n <artinfo>\r\n <ui>2002-08630-3</ui>\r\n
|
266
|
+
\ <ppf>299</ppf>\r\n <extent>299-310</extent>\r\n
|
267
|
+
\ <tig>\r\n <atl>Schumann's <i>Dichterliebe</i>
|
268
|
+
and early Romantic poetics: Fragmentation of desire</atl>\r\n </tig>\r\n
|
269
|
+
\ <aug>\r\n <au>Malin, Yonatan</au>\r\n </aug>\r\n
|
270
|
+
\ <sug>\r\n <subj type=\"unclass\">Romantic era
|
271
|
+
-- aesthetics -- lied -- fragmentation</subj>\r\n <subj type=\"unclass\">lied
|
272
|
+
-- Romantic era -- aesthetics -- fragmentation</subj>\r\n <subj
|
273
|
+
type=\"unclass\">poetry -- Romantic era -- fragmentation</subj>\r\n <subj
|
274
|
+
type=\"unclass\">aesthetics -- Romantic era -- lied -- fragmentation</subj>\r\n
|
275
|
+
\ <subj type=\"unclass\">Schumann, Robert -- works -- Dichterliebe,
|
276
|
+
op. 48 -- fragmentation</subj>\r\n <subj type=\"unclass\">text
|
277
|
+
setting -- Schumann, Robert -- Dichterliebe, op. 48 -- fragmentation</subj>\r\n
|
278
|
+
\ <subj type=\"unclass\">Heine, Heinrich -- writings -- Lyrisches
|
279
|
+
Intermezzo -- set by Schumann</subj>\r\n <subj type=\"unclass\">poetry
|
280
|
+
-- Heine, H. -- Lyrisches Intermezzo -- set by Schumann</subj>\r\n <subj
|
281
|
+
type=\"unclass\">accompaniment -- Schumann, Robert -- Dichterliebe, op. 48
|
282
|
+
-- relation to voice</subj>\r\n <subj type=\"major\">Music
|
283
|
+
and other arts</subj>\r\n <subj type=\"major\">Western art
|
284
|
+
music</subj>\r\n </sug>\r\n <su>Romantic era</su>\r\n
|
285
|
+
\ <su>lied</su>\r\n <su>poetry</su>\r\n <su>aesthetics</su>\r\n
|
286
|
+
\ <su>Schumann, Robert</su>\r\n <su>text setting</su>\r\n
|
287
|
+
\ <su>Heine, Heinrich</su>\r\n <su>poetry</su>\r\n
|
288
|
+
\ <su>accompaniment</su>\r\n <ab />\r\n <doctype>Review
|
289
|
+
of book</doctype>\r\n </artinfo>\r\n <language>English</language>\r\n
|
290
|
+
\ <copyright />\r\n <holdings islocal=\"N\" />\r\n </controlInfo>\r\n
|
291
|
+
\ </header>\r\n </rec>\r\n <rec recordID=\"2\">\r\n <pdfLink
|
292
|
+
/>\r\n <plink>http://search.ebscohost.com/login.aspx?direct=true&db=rih&AN=2002-08630-1&site=ehost-live&scope=site</plink>\r\n
|
293
|
+
\ <header shortDbName=\"rih\" uiTerm=\"2002-08630-1\" longDbName=\"RILM
|
294
|
+
\ Abstracts of Music Literature\" uiTag=\"AN\">\r\n <controlInfo>\r\n
|
295
|
+
\ <bkinfo>\r\n <aug />\r\n </bkinfo>\r\n
|
296
|
+
\ <revinfo>\r\n <rtl>Schumann's <i>Dichterliebe</i>
|
297
|
+
and early Romantic poetics: Fragmentation of desire</rtl>\r\n <aug>\r\n
|
298
|
+
\ <au type=\"reviewer\">Brown, Julie Hedges</au>\r\n </aug>\r\n
|
299
|
+
\ </revinfo>\r\n <dissinfo />\r\n <jinfo>\r\n
|
300
|
+
\ <jid type=\"issn\">01482076</jid>\r\n <jtl>19th-century
|
301
|
+
music</jtl>\r\n <isbn type=\"print\">01482076</isbn>\r\n </jinfo>\r\n
|
302
|
+
\ <pubinfo>\r\n <dt year=\"2005\" month=\"03\" day=\"01\"
|
303
|
+
/>\r\n <vid>28</vid>\r\n <iid>3</iid>\r\n <place>United
|
304
|
+
States</place>\r\n </pubinfo>\r\n <artinfo>\r\n <ui>2002-08630-1</ui>\r\n
|
305
|
+
\ <ppf>276</ppf>\r\n <extent>276-295</extent>\r\n
|
306
|
+
\ <tig>\r\n <atl>Schumann's <i>Dichterliebe</i>
|
307
|
+
and early Romantic poetics: Fragmentation of desire</atl>\r\n </tig>\r\n
|
308
|
+
\ <aug>\r\n <au>Brown, Julie Hedges</au>\r\n </aug>\r\n
|
309
|
+
\ <sug>\r\n <subj type=\"unclass\">Romantic era
|
310
|
+
-- aesthetics -- lied -- fragmentation</subj>\r\n <subj type=\"unclass\">lied
|
311
|
+
-- Romantic era -- aesthetics -- fragmentation</subj>\r\n <subj
|
312
|
+
type=\"unclass\">poetry -- Romantic era -- fragmentation</subj>\r\n <subj
|
313
|
+
type=\"unclass\">aesthetics -- Romantic era -- lied -- fragmentation</subj>\r\n
|
314
|
+
\ <subj type=\"unclass\">Schumann, Robert -- works -- Dichterliebe,
|
315
|
+
op. 48 -- fragmentation</subj>\r\n <subj type=\"unclass\">text
|
316
|
+
setting -- Schumann, Robert -- Dichterliebe, op. 48 -- fragmentation</subj>\r\n
|
317
|
+
\ <subj type=\"unclass\">Heine, Heinrich -- writings -- Lyrisches
|
318
|
+
Intermezzo -- set by Schumann</subj>\r\n <subj type=\"unclass\">poetry
|
319
|
+
-- Heine, H. -- Lyrisches Intermezzo -- set by Schumann</subj>\r\n <subj
|
320
|
+
type=\"unclass\">accompaniment -- Schumann, Robert -- Dichterliebe, op. 48
|
321
|
+
-- relation to voice</subj>\r\n <subj type=\"major\">Music
|
322
|
+
and other arts</subj>\r\n <subj type=\"major\">Western art
|
323
|
+
music</subj>\r\n </sug>\r\n <su>Romantic era</su>\r\n
|
324
|
+
\ <su>lied</su>\r\n <su>poetry</su>\r\n <su>aesthetics</su>\r\n
|
325
|
+
\ <su>Schumann, Robert</su>\r\n <su>text setting</su>\r\n
|
326
|
+
\ <su>Heine, Heinrich</su>\r\n <su>poetry</su>\r\n
|
327
|
+
\ <su>accompaniment</su>\r\n <ab />\r\n <doctype>Review
|
328
|
+
of book</doctype>\r\n </artinfo>\r\n <language>English</language>\r\n
|
329
|
+
\ <copyright />\r\n <holdings islocal=\"N\" />\r\n </controlInfo>\r\n
|
330
|
+
\ </header>\r\n </rec>\r\n <rec recordID=\"3\">\r\n <pdfLink
|
331
|
+
/>\r\n <plink>http://search.ebscohost.com/login.aspx?direct=true&db=rih&AN=2002-08630-2&site=ehost-live&scope=site</plink>\r\n
|
332
|
+
\ <header shortDbName=\"rih\" uiTerm=\"2002-08630-2\" longDbName=\"RILM
|
333
|
+
\ Abstracts of Music Literature\" uiTag=\"AN\">\r\n <controlInfo>\r\n
|
334
|
+
\ <bkinfo>\r\n <aug />\r\n </bkinfo>\r\n
|
335
|
+
\ <revinfo>\r\n <rtl>Schumann's <i>Dichterliebe</i>
|
336
|
+
and early Romantic poetics: Fragmentation of desire</rtl>\r\n <aug>\r\n
|
337
|
+
\ <au type=\"reviewer\">Fodale, Angela</au>\r\n </aug>\r\n
|
338
|
+
\ </revinfo>\r\n <dissinfo />\r\n <jinfo>\r\n
|
339
|
+
\ <jtl>Drammaturgia musicale e altri studi</jtl>\r\n </jinfo>\r\n
|
340
|
+
\ <pubinfo>\r\n <dt year=\"2004\" month=\"01\" day=\"01\"
|
341
|
+
/>\r\n <iid>2</iid>\r\n <place>Italy</place>\r\n
|
342
|
+
\ </pubinfo>\r\n <artinfo>\r\n <ui>2002-08630-2</ui>\r\n
|
343
|
+
\ <ppf>133</ppf>\r\n <extent>133-136</extent>\r\n
|
344
|
+
\ <tig>\r\n <atl>Schumann's <i>Dichterliebe</i>
|
345
|
+
and early Romantic poetics: Fragmentation of desire</atl>\r\n </tig>\r\n
|
346
|
+
\ <aug>\r\n <au>Fodale, Angela</au>\r\n </aug>\r\n
|
347
|
+
\ <sug>\r\n <subj type=\"unclass\">Romantic era
|
348
|
+
-- aesthetics -- lied -- fragmentation</subj>\r\n <subj type=\"unclass\">lied
|
349
|
+
-- Romantic era -- aesthetics -- fragmentation</subj>\r\n <subj
|
350
|
+
type=\"unclass\">poetry -- Romantic era -- fragmentation</subj>\r\n <subj
|
351
|
+
type=\"unclass\">aesthetics -- Romantic era -- lied -- fragmentation</subj>\r\n
|
352
|
+
\ <subj type=\"unclass\">Schumann, Robert -- works -- Dichterliebe,
|
353
|
+
op. 48 -- fragmentation</subj>\r\n <subj type=\"unclass\">text
|
354
|
+
setting -- Schumann, Robert -- Dichterliebe, op. 48 -- fragmentation</subj>\r\n
|
355
|
+
\ <subj type=\"unclass\">Heine, Heinrich -- writings -- Lyrisches
|
356
|
+
Intermezzo -- set by Schumann</subj>\r\n <subj type=\"unclass\">poetry
|
357
|
+
-- Heine, H. -- Lyrisches Intermezzo -- set by Schumann</subj>\r\n <subj
|
358
|
+
type=\"unclass\">accompaniment -- Schumann, Robert -- Dichterliebe, op. 48
|
359
|
+
-- relation to voice</subj>\r\n <subj type=\"major\">Music
|
360
|
+
and other arts</subj>\r\n <subj type=\"major\">Western art
|
361
|
+
music</subj>\r\n </sug>\r\n <su>Romantic era</su>\r\n
|
362
|
+
\ <su>lied</su>\r\n <su>poetry</su>\r\n <su>aesthetics</su>\r\n
|
363
|
+
\ <su>Schumann, Robert</su>\r\n <su>text setting</su>\r\n
|
364
|
+
\ <su>Heine, Heinrich</su>\r\n <su>poetry</su>\r\n
|
365
|
+
\ <su>accompaniment</su>\r\n <ab />\r\n <doctype>Review
|
366
|
+
of book</doctype>\r\n </artinfo>\r\n <language>English</language>\r\n
|
367
|
+
\ <copyright />\r\n <holdings islocal=\"N\" />\r\n </controlInfo>\r\n
|
368
|
+
\ </header>\r\n </rec>\r\n <rec recordID=\"4\">\r\n <pdfLink
|
369
|
+
/>\r\n <plink>http://search.ebscohost.com/login.aspx?direct=true&db=rih&AN=2002-08630&site=ehost-live&scope=site</plink>\r\n
|
370
|
+
\ <header shortDbName=\"rih\" uiTerm=\"2002-08630\" longDbName=\"RILM
|
371
|
+
\ Abstracts of Music Literature\" uiTag=\"AN\">\r\n <controlInfo>\r\n
|
372
|
+
\ <bkinfo>\r\n <btl>Schumann's <i>Dichterliebe</i>
|
373
|
+
and early Romantic poetics: Fragmentation of desire</btl>\r\n <aug>\r\n
|
374
|
+
\ <au>Perrey, Beate</au>\r\n </aug>\r\n <sertl>Cambridge
|
375
|
+
studies in music theory and analysis</sertl>\r\n <isbn type=\"print\">0521814790</isbn>\r\n
|
376
|
+
\ </bkinfo>\r\n <revinfo />\r\n <dissinfo
|
377
|
+
/>\r\n <jinfo />\r\n <pubinfo>\r\n <dt
|
378
|
+
year=\"2002\" month=\"01\" day=\"01\" />\r\n <pub>Cambridge University
|
379
|
+
Press</pub>\r\n <place>Cambridge</place>\r\n <place>England</place>\r\n
|
380
|
+
\ <place>United States</place>\r\n </pubinfo>\r\n <artinfo>\r\n
|
381
|
+
\ <ui>2002-08630</ui>\r\n <tig>\r\n <atl>Schumann's
|
382
|
+
<i>Dichterliebe</i> and early Romantic poetics: Fragmentation of desire</atl>\r\n
|
383
|
+
\ </tig>\r\n <aug>\r\n <au>Perrey,
|
384
|
+
Beate</au>\r\n </aug>\r\n <sug>\r\n <subj
|
385
|
+
type=\"unclass\">Romantic era -- aesthetics -- lied -- fragmentation</subj>\r\n
|
386
|
+
\ <subj type=\"unclass\">lied -- Romantic era -- aesthetics
|
387
|
+
-- fragmentation</subj>\r\n <subj type=\"unclass\">poetry --
|
388
|
+
Romantic era -- fragmentation</subj>\r\n <subj type=\"unclass\">aesthetics
|
389
|
+
-- Romantic era -- lied -- fragmentation</subj>\r\n <subj type=\"unclass\">Schumann,
|
390
|
+
Robert -- works -- Dichterliebe, op. 48 -- fragmentation</subj>\r\n <subj
|
391
|
+
type=\"unclass\">text setting -- Schumann, Robert -- Dichterliebe, op. 48
|
392
|
+
-- fragmentation</subj>\r\n <subj type=\"unclass\">Heine, Heinrich
|
393
|
+
-- writings -- Lyrisches Intermezzo -- set by Schumann</subj>\r\n <subj
|
394
|
+
type=\"unclass\">poetry -- Heine, H. -- Lyrisches Intermezzo -- set by Schumann</subj>\r\n
|
395
|
+
\ <subj type=\"unclass\">accompaniment -- Schumann, Robert --
|
396
|
+
Dichterliebe, op. 48 -- relation to voice</subj>\r\n <subj
|
397
|
+
type=\"major\">Music and other arts</subj>\r\n <subj type=\"major\">Western
|
398
|
+
art music</subj>\r\n </sug>\r\n <su>Romantic era</su>\r\n
|
399
|
+
\ <su>lied</su>\r\n <su>poetry</su>\r\n <su>aesthetics</su>\r\n
|
400
|
+
\ <su>Schumann, Robert</su>\r\n <su>text setting</su>\r\n
|
401
|
+
\ <su>Heine, Heinrich</su>\r\n <su>poetry</su>\r\n
|
402
|
+
\ <su>accompaniment</su>\r\n <ab>Offers a theory
|
403
|
+
of the Romantic lied by reevaluating Schumann's <i>Dichterliebe</i> of 1840
|
404
|
+
and investigating the poetics of early Romanticism in order to understand
|
405
|
+
the mysterious magnetism and singular imaginative energy that imbues Schumann's
|
406
|
+
musical language. The Romantics rejected the ideal of a coherent and organic
|
407
|
+
whole, realizing an aesthetic of fragmentation. Close readings of many songs
|
408
|
+
from <i>Dichterliebe</i> show the singer's intense involvement with the piano's
|
409
|
+
voice, suggesting a split self and the presence of the Other. Schumann becomes
|
410
|
+
the second poet of the poem in this musical rendition of Heine's <i>Lyrisches
|
411
|
+
Intermezzo</i>.</ab>\r\n <pubtype>Book</pubtype>\r\n <doctype>Book:
|
412
|
+
monograph</doctype>\r\n </artinfo>\r\n <language>English</language>\r\n
|
413
|
+
\ <copyright />\r\n <holdings islocal=\"N\" />\r\n </controlInfo>\r\n
|
414
|
+
\ </header>\r\n </rec>\r\n </records>\r\n </SearchResults>\r\n</searchResponse>"
|
415
|
+
http_version:
|
416
|
+
recorded_at: Mon, 22 Apr 2013 17:10:59 GMT
|
210
417
|
recorded_with: VCR 2.4.0
|
metadata
CHANGED
@@ -1,211 +1,205 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bento_search
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonathan Rochkind
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-04-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: 3.2.3
|
20
|
-
- - <
|
20
|
+
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: '5'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- -
|
27
|
+
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: 3.2.3
|
30
|
-
- - <
|
30
|
+
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: '5'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: confstruct
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- -
|
38
|
-
- !ruby/object:Gem::Version
|
39
|
-
version: 0.2.3
|
40
|
-
- - <
|
37
|
+
- - "~>"
|
41
38
|
- !ruby/object:Gem::Version
|
42
39
|
version: '1.0'
|
43
40
|
type: :runtime
|
44
41
|
prerelease: false
|
45
42
|
version_requirements: !ruby/object:Gem::Requirement
|
46
43
|
requirements:
|
47
|
-
- -
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
version: 0.2.3
|
50
|
-
- - <
|
44
|
+
- - "~>"
|
51
45
|
- !ruby/object:Gem::Version
|
52
46
|
version: '1.0'
|
53
47
|
- !ruby/object:Gem::Dependency
|
54
48
|
name: httpclient
|
55
49
|
requirement: !ruby/object:Gem::Requirement
|
56
50
|
requirements:
|
57
|
-
- -
|
51
|
+
- - ">="
|
58
52
|
- !ruby/object:Gem::Version
|
59
53
|
version: 2.2.5
|
60
|
-
- - <
|
54
|
+
- - "<"
|
61
55
|
- !ruby/object:Gem::Version
|
62
56
|
version: 3.0.0
|
63
57
|
type: :runtime
|
64
58
|
prerelease: false
|
65
59
|
version_requirements: !ruby/object:Gem::Requirement
|
66
60
|
requirements:
|
67
|
-
- -
|
61
|
+
- - ">="
|
68
62
|
- !ruby/object:Gem::Version
|
69
63
|
version: 2.2.5
|
70
|
-
- - <
|
64
|
+
- - "<"
|
71
65
|
- !ruby/object:Gem::Version
|
72
66
|
version: 3.0.0
|
73
67
|
- !ruby/object:Gem::Dependency
|
74
68
|
name: multi_json
|
75
69
|
requirement: !ruby/object:Gem::Requirement
|
76
70
|
requirements:
|
77
|
-
- -
|
71
|
+
- - ">="
|
78
72
|
- !ruby/object:Gem::Version
|
79
73
|
version: 1.0.4
|
80
|
-
- - <
|
74
|
+
- - "<"
|
81
75
|
- !ruby/object:Gem::Version
|
82
76
|
version: '2.0'
|
83
77
|
type: :runtime
|
84
78
|
prerelease: false
|
85
79
|
version_requirements: !ruby/object:Gem::Requirement
|
86
80
|
requirements:
|
87
|
-
- -
|
81
|
+
- - ">="
|
88
82
|
- !ruby/object:Gem::Version
|
89
83
|
version: 1.0.4
|
90
|
-
- - <
|
84
|
+
- - "<"
|
91
85
|
- !ruby/object:Gem::Version
|
92
86
|
version: '2.0'
|
93
87
|
- !ruby/object:Gem::Dependency
|
94
88
|
name: nokogiri
|
95
89
|
requirement: !ruby/object:Gem::Requirement
|
96
90
|
requirements:
|
97
|
-
- -
|
91
|
+
- - ">="
|
98
92
|
- !ruby/object:Gem::Version
|
99
93
|
version: '0'
|
100
94
|
type: :runtime
|
101
95
|
prerelease: false
|
102
96
|
version_requirements: !ruby/object:Gem::Requirement
|
103
97
|
requirements:
|
104
|
-
- -
|
98
|
+
- - ">="
|
105
99
|
- !ruby/object:Gem::Version
|
106
100
|
version: '0'
|
107
101
|
- !ruby/object:Gem::Dependency
|
108
102
|
name: openurl
|
109
103
|
requirement: !ruby/object:Gem::Requirement
|
110
104
|
requirements:
|
111
|
-
- -
|
105
|
+
- - ">="
|
112
106
|
- !ruby/object:Gem::Version
|
113
107
|
version: 0.3.1
|
114
|
-
- - <
|
108
|
+
- - "<"
|
115
109
|
- !ruby/object:Gem::Version
|
116
110
|
version: '1.1'
|
117
111
|
type: :runtime
|
118
112
|
prerelease: false
|
119
113
|
version_requirements: !ruby/object:Gem::Requirement
|
120
114
|
requirements:
|
121
|
-
- -
|
115
|
+
- - ">="
|
122
116
|
- !ruby/object:Gem::Version
|
123
117
|
version: 0.3.1
|
124
|
-
- - <
|
118
|
+
- - "<"
|
125
119
|
- !ruby/object:Gem::Version
|
126
120
|
version: '1.1'
|
127
121
|
- !ruby/object:Gem::Dependency
|
128
122
|
name: summon
|
129
123
|
requirement: !ruby/object:Gem::Requirement
|
130
124
|
requirements:
|
131
|
-
- -
|
125
|
+
- - ">="
|
132
126
|
- !ruby/object:Gem::Version
|
133
127
|
version: '0'
|
134
128
|
type: :runtime
|
135
129
|
prerelease: false
|
136
130
|
version_requirements: !ruby/object:Gem::Requirement
|
137
131
|
requirements:
|
138
|
-
- -
|
132
|
+
- - ">="
|
139
133
|
- !ruby/object:Gem::Version
|
140
134
|
version: '0'
|
141
135
|
- !ruby/object:Gem::Dependency
|
142
136
|
name: language_list
|
143
137
|
requirement: !ruby/object:Gem::Requirement
|
144
138
|
requirements:
|
145
|
-
- - ~>
|
139
|
+
- - "~>"
|
146
140
|
- !ruby/object:Gem::Version
|
147
141
|
version: '1.0'
|
148
142
|
type: :runtime
|
149
143
|
prerelease: false
|
150
144
|
version_requirements: !ruby/object:Gem::Requirement
|
151
145
|
requirements:
|
152
|
-
- - ~>
|
146
|
+
- - "~>"
|
153
147
|
- !ruby/object:Gem::Version
|
154
148
|
version: '1.0'
|
155
149
|
- !ruby/object:Gem::Dependency
|
156
150
|
name: htmlentities
|
157
151
|
requirement: !ruby/object:Gem::Requirement
|
158
152
|
requirements:
|
159
|
-
- -
|
153
|
+
- - ">="
|
160
154
|
- !ruby/object:Gem::Version
|
161
155
|
version: '0'
|
162
156
|
type: :runtime
|
163
157
|
prerelease: false
|
164
158
|
version_requirements: !ruby/object:Gem::Requirement
|
165
159
|
requirements:
|
166
|
-
- -
|
160
|
+
- - ">="
|
167
161
|
- !ruby/object:Gem::Version
|
168
162
|
version: '0'
|
169
163
|
- !ruby/object:Gem::Dependency
|
170
164
|
name: vcr
|
171
165
|
requirement: !ruby/object:Gem::Requirement
|
172
166
|
requirements:
|
173
|
-
- - ~>
|
167
|
+
- - "~>"
|
174
168
|
- !ruby/object:Gem::Version
|
175
169
|
version: '2.4'
|
176
170
|
type: :development
|
177
171
|
prerelease: false
|
178
172
|
version_requirements: !ruby/object:Gem::Requirement
|
179
173
|
requirements:
|
180
|
-
- - ~>
|
174
|
+
- - "~>"
|
181
175
|
- !ruby/object:Gem::Version
|
182
176
|
version: '2.4'
|
183
177
|
- !ruby/object:Gem::Dependency
|
184
178
|
name: webmock
|
185
179
|
requirement: !ruby/object:Gem::Requirement
|
186
180
|
requirements:
|
187
|
-
- - ~>
|
181
|
+
- - "~>"
|
188
182
|
- !ruby/object:Gem::Version
|
189
183
|
version: 1.11.0
|
190
184
|
type: :development
|
191
185
|
prerelease: false
|
192
186
|
version_requirements: !ruby/object:Gem::Requirement
|
193
187
|
requirements:
|
194
|
-
- - ~>
|
188
|
+
- - "~>"
|
195
189
|
- !ruby/object:Gem::Version
|
196
190
|
version: 1.11.0
|
197
191
|
- !ruby/object:Gem::Dependency
|
198
192
|
name: celluloid
|
199
193
|
requirement: !ruby/object:Gem::Requirement
|
200
194
|
requirements:
|
201
|
-
- -
|
195
|
+
- - ">="
|
202
196
|
- !ruby/object:Gem::Version
|
203
197
|
version: '0'
|
204
198
|
type: :development
|
205
199
|
prerelease: false
|
206
200
|
version_requirements: !ruby/object:Gem::Requirement
|
207
201
|
requirements:
|
208
|
-
- -
|
202
|
+
- - ">="
|
209
203
|
- !ruby/object:Gem::Version
|
210
204
|
version: '0'
|
211
205
|
description:
|
@@ -308,7 +302,6 @@ files:
|
|
308
302
|
- test/functional/bento_search/search_controller_test.rb
|
309
303
|
- test/helper/bento_search_helper_test.rb
|
310
304
|
- test/helper/bento_truncate_helper_test.rb
|
311
|
-
- test/integration/navigation_test.rb
|
312
305
|
- test/search_engines/ebsco_host_engine_test.rb
|
313
306
|
- test/search_engines/eds_engine_test.rb
|
314
307
|
- test/search_engines/google_books_engine_test.rb
|
@@ -400,17 +393,17 @@ require_paths:
|
|
400
393
|
- lib
|
401
394
|
required_ruby_version: !ruby/object:Gem::Requirement
|
402
395
|
requirements:
|
403
|
-
- -
|
396
|
+
- - ">="
|
404
397
|
- !ruby/object:Gem::Version
|
405
398
|
version: '0'
|
406
399
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
407
400
|
requirements:
|
408
|
-
- -
|
401
|
+
- - ">="
|
409
402
|
- !ruby/object:Gem::Version
|
410
403
|
version: '0'
|
411
404
|
requirements: []
|
412
405
|
rubyforge_project:
|
413
|
-
rubygems_version: 2.4.
|
406
|
+
rubygems_version: 2.4.5
|
414
407
|
signing_key:
|
415
408
|
specification_version: 4
|
416
409
|
summary: An abstraction/normalization layer for querying and displaying results for
|
@@ -452,7 +445,6 @@ test_files:
|
|
452
445
|
- test/functional/bento_search/search_controller_test.rb
|
453
446
|
- test/helper/bento_search_helper_test.rb
|
454
447
|
- test/helper/bento_truncate_helper_test.rb
|
455
|
-
- test/integration/navigation_test.rb
|
456
448
|
- test/search_engines/ebsco_host_engine_test.rb
|
457
449
|
- test/search_engines/eds_engine_test.rb
|
458
450
|
- test/search_engines/google_books_engine_test.rb
|