gared 0.0.20 → 0.0.21

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/gared/primo.rb +3 -3
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9fb915630aab9c72a2a65c7eabbdc499960696bf76bc16d8203ae4a9b646cc11
4
- data.tar.gz: 0be0b0bac6462762dfc7b8ebc3a4cd971807672840471ae1870ce09b7b4a0504
3
+ metadata.gz: 5b31908b108520003b9d2f7e4c37a3d7f8ccab124f577343b5e5a7b7f1473432
4
+ data.tar.gz: 7ebd7bf7246c5c703f021f403460aa8b3ba1107842df23ebc1e6b0f40e89b9a5
5
5
  SHA512:
6
- metadata.gz: e6e66324d695c4e0acf36a6be81da9a57820b1c9b46034129f05779cd3381b7f3a95af5b488f29a57ad257c25428b01f156ed68bf2bee6fc4b85910c1ff872ab
7
- data.tar.gz: 97b2e67d76e165404f2a8235557945e332718b0af72676039635a5b1f4b3a5c1388a1b5432af632a8068b8ffd431b994e558aa8fcae503385ba1b599caa855a0
6
+ metadata.gz: 169547fe7caaf6f0777460b7c76cae17c6583a4b3c064e130dd6ddc33bf50bf7984576b216a3c8554dd08f6911a7b2f930e6b4d6f1b2713df729c2c3fc3617ed
7
+ data.tar.gz: dea903b2aee797c53f62956645bdfa99737fa29eec4019f670a139cac34ee46dca97954b52b217594c0d314d9513b2f6f08f9cea8b474b94248101d18d3628f1
data/lib/gared/primo.rb CHANGED
@@ -23,14 +23,14 @@ module Gared
23
23
  def query_publications_by_person(person, ctx = nil)
24
24
  ret = []
25
25
  begin
26
- url = @options[:url]+"?institution=#{@options[:institution]}&query=creator,contains,#{URI.escape(person)}&indx=1&bulkSize=50&query=facet_rtype,exact,books}&json=true"
26
+ url = @options[:url]+"?institution=#{@options[:institution]}&query=creator,contains,#{URI.escape(person)}&indx=1&bulkSize=50&query=facet_rtype,exact,books&json=true"
27
27
  json = JSON.parse(RestClient.get(url))
28
28
  total = json['SEGMENTS']['JAGROOT']['RESULT']['DOCSET']['@TOTALHITS'].to_i
29
29
  start_at = 1
30
30
  recs = json['SEGMENTS']['JAGROOT']['RESULT']['DOCSET']['DOC'] # stash the records
31
31
  while recs.length < total
32
32
  start_at += 50
33
- url = @options[:url]+"?institution=#{@options[:institution]}&query=creator,contains,#{URI.escape(person)}&indx=#{start_at}&bulkSize=50&query=facet_rtype,exact,books}&json=true"
33
+ url = @options[:url]+"?institution=#{@options[:institution]}&query=creator,contains,#{URI.escape(person)}&indx=#{start_at}&bulkSize=50&query=facet_rtype,exact,books&json=true"
34
34
  json = JSON.parse(RestClient.get(url))
35
35
  recs += json['SEGMENTS']['JAGROOT']['RESULT']['DOCSET']['DOC']
36
36
  sleep 1 # respect the server and avoid flood-blocking
@@ -68,4 +68,4 @@ module Gared
68
68
  return ret
69
69
  end
70
70
  end
71
- end
71
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gared
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.20
4
+ version: 0.0.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Asaf Bartov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-04 00:00:00.000000000 Z
11
+ date: 2019-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: zoom