search_solr_tools 3.8.4 → 3.9.1.pre3

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: dc4937aa8f6f83bbe8099bf75ad35d5580c39b80
4
- data.tar.gz: efc2f96d0b6467989cbd37fc2affca717ee69da7
3
+ metadata.gz: 0eca83aeaaf032db4ad857d5846eba30a70deed6
4
+ data.tar.gz: a6dc274976b44825495eef456fa41adbe3712d7c
5
5
  SHA512:
6
- metadata.gz: af217f89a860011e77b574e3b7aa0bf2f1e8be49d5a8e90500e150884e1fc7d50e4137afa54c90a9e4bba5455d2659ae831a41bace51289dd166c9dc25c6a8be
7
- data.tar.gz: 695b3fb90e87fa37587680abbd496d164b9e3f55c481df72f1f4b0f298c877294bf8b228ef72d83db3365adeb8a8935071f17833e5fc4597904a7d2ce77cf780
6
+ metadata.gz: 3572a3f72c0f90e4f30b5545753010485235ce75689b9d9365db2d1319a1c36a044f3510c2b5b35707cc089b2aef08696381e28df75fef40f6e83295b3f1c211
7
+ data.tar.gz: 433f5b5e0c0cb54452abea026f67a50678e81c469ea5ce99a2b715f8d4e8185c7189ea7a626bddb894d71790e3b7d04c7c6dc669263906ff1cded41422a41577
@@ -1,3 +1,9 @@
1
+ ## v3.9.0 (2017-04-10)
2
+
3
+ Changes
4
+
5
+ - Constrain ADC and ECHO feeds to only fetch records in the arctic.
6
+
1
7
  ## v3.8.4 (2017-03-30)
2
8
 
3
9
  Bugfix
@@ -4,9 +4,9 @@
4
4
  :collection_path: solr
5
5
  :port: 8983
6
6
  :bcodmo_url: http://www.bco-dmo.org/nsidc/arctic-deployments.json
7
- :adc_url: https://arcticdata.io/metacat/d1/mn/v2/query/solr/
7
+ :adc_url: https://arcticdata.io/metacat/d1/mn/v2/query/solr/select?q=northBoundCoord:%5B45.0%20TO%2090.0%5D
8
8
  :data_one_url: https://cn.dataone.org/cn/v1/query/solr/select?q=northBoundCoord:%5B45.0%20TO%2090.0%5D
9
- :echo_url: https://api.echo.nasa.gov/catalog-rest/echo_catalog/datasets.echo10
9
+ :echo_url: https://api.echo.nasa.gov/catalog-rest/echo_catalog/datasets.echo10?bounding_box=-180,45,180,90
10
10
  :gtnp:
11
11
  - http://www.gtnpdatabase.org/rest/boreholes/json
12
12
  - http://www.gtnpdatabase.org/rest/activelayers/json
@@ -40,7 +40,7 @@ module SearchSolrTools
40
40
  end
41
41
 
42
42
  def build_request(start = 0, max_records = 100)
43
- "#{metadata_url}?q=*:*&start=#{start}&rows=#{max_records}"
43
+ "#{metadata_url}&start=#{start}&rows=#{max_records}"
44
44
  end
45
45
  end
46
46
  end
@@ -43,7 +43,7 @@ module SearchSolrTools
43
43
  end
44
44
 
45
45
  def build_request(max_records = '25', page_num = '1')
46
- echo_url + '?page_size=' + max_records.to_s + '&page_num=' + page_num.to_s
46
+ echo_url + '&page_size=' + max_records.to_s + '&page_num=' + page_num.to_s
47
47
  end
48
48
  end
49
49
  end
@@ -1,3 +1,3 @@
1
1
  module SearchSolrTools
2
- VERSION = '3.8.4'
2
+ VERSION = '3.9.1.pre3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: search_solr_tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.8.4
4
+ version: 3.9.1.pre3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Chalstrom
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2017-03-30 00:00:00.000000000 Z
15
+ date: 2017-04-10 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: ffi-geos
@@ -372,12 +372,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
372
372
  version: '2.0'
373
373
  required_rubygems_version: !ruby/object:Gem::Requirement
374
374
  requirements:
375
- - - ">="
375
+ - - ">"
376
376
  - !ruby/object:Gem::Version
377
- version: '0'
377
+ version: 1.3.1
378
378
  requirements: []
379
379
  rubyforge_project:
380
- rubygems_version: 2.4.8
380
+ rubygems_version: 2.6.11
381
381
  signing_key:
382
382
  specification_version: 4
383
383
  summary: Tools to harvest and manage various scientific dataset feeds in a Solr instance.