search_solr_tools 3.11.0 → 4.0.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83a2c27b416b5f32c0f729cf8aefb28684cedbe528d071116c6db112abe13d2a
4
- data.tar.gz: 4e2f6e63c0ce601a5ee747504426a8470bb33d8d5c51c96d275ff561cb813998
3
+ metadata.gz: '0382657017a7d0cc8bc41326d81f5c5bb4119fba404f6dbbdc903080ebb88722'
4
+ data.tar.gz: 0ca907ef6d78f9212c1af2d421c8c0280614958c1e9c2694df3522230ae4c10a
5
5
  SHA512:
6
- metadata.gz: 7f9894781ef69fa5688b9ed53112f935146c4066de512b0e5f24d76d13943ebeceefc38cdb0936ed5ca6252ac1c28a3b809cdd6549a54fc57549abdeab02bd1a
7
- data.tar.gz: 5c0c3fe646dd3015abea578fec718220719b8ecfd32c555cd1eb4894d8496cf7a0d382e55b0325cec9759b7ab76f4701c5388d323b1069e1e7236afaebbf302d
6
+ metadata.gz: b1289b38c0ef0f39f66ca5ed913be6db354a50d8a4001dc86db098090c6f27513c62997205d370da769d517879b6f603df381ebfa3d016102b72657298794f9a
7
+ data.tar.gz: eb9b7978b9b7a92f3757320256e42696062ed8a06f478ff2fddb987a911ca159836716ce66e0fc1a199a33f315c2acda4426829f41d47e11b6b1088f53d27fdd
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## v4.0.0 (2019-07-08)
2
+
3
+ Changes:
4
+
5
+ - Update spatial field formatting to work with Solr 8.1.1.
6
+
1
7
  ## v3.11.0 (2019-06-10)
2
8
 
3
9
  Changes:
data/README.md CHANGED
@@ -113,6 +113,10 @@ Requirements:
113
113
  [ownership](http://guides.rubygems.org/publishing/) of the gem
114
114
  * RuboCop and the unit tests should all pass (`rake`)
115
115
 
116
+ The [CHANGELOG.md](CHANGELOG.md) is not automatically updated by the
117
+ `rake release:*` tasks. Update it manually to insert the correct version and
118
+ date, and commit the file, before creating the release package.
119
+
116
120
  **gem release** is used by rake tasks in this project to handle version changes,
117
121
  tagging, and publishing to RubyGems.
118
122
 
@@ -130,16 +134,15 @@ tagging, and publishing to RubyGems.
130
134
  * the changes are pushed
131
135
  * the tagged version is built and published to RubyGems
132
136
 
133
- ### SOLR:
137
+ ### SOLR
134
138
 
135
- To harvest data utilizing the gem, you will need a local configured instance of
136
- Solr 4.3, which can be downloaded from
137
- [Apache's archive](https://archive.apache.org/dist/lucene/solr/4.3.0/).
139
+ To harvest data utilizing the gem, you will need an installed instance of [Solr
140
+ 8.1.1](https://lucene.apache.org/solr/guide/)
138
141
 
139
142
  #### NSIDC
140
143
 
141
144
  At NSIDC the development VM can be provisioned with the
142
- [solr puppet module](https://bitbucket.org/nsidc/puppet-solr/) to install and
145
+ [solr puppet module](https://bitbucket.org/nsidc/puppet-nsidc-solr/) to install and
143
146
  configure Solr.
144
147
 
145
148
  #### Non-NSIDC
@@ -172,17 +175,17 @@ the `--environment` flag when running `search_solr_tools harvest`.
172
175
 
173
176
  ### How to contact NSIDC
174
177
 
175
- User Services and general information:
176
- Support: [http://support.nsidc.org](http://support.nsidc.org)
178
+ User Services and general information:
179
+ Support: [http://support.nsidc.org](http://support.nsidc.org)
177
180
  Email: nsidc@nsidc.org
178
181
 
179
- Phone: +1 303.492.6199
182
+ Phone: +1 303.492.6199
180
183
  Fax: +1 303.492.2468
181
184
 
182
- Mailing address:
183
- National Snow and Ice Data Center
184
- CIRES, 449 UCB
185
- University of Colorado
185
+ Mailing address:
186
+ National Snow and Ice Data Center
187
+ CIRES, 449 UCB
188
+ University of Colorado
186
189
  Boulder, CO 80309-0449 USA
187
190
 
188
191
  ### License
@@ -36,7 +36,7 @@ module SearchSolrTools
36
36
  "#{geo_json.x} #{geo_json.y}"
37
37
  else
38
38
  bbox = RGeo::Cartesian::BoundingBox.create_from_geometry(geo_json)
39
- "#{bbox.min_x} #{bbox.min_y} #{bbox.max_x} #{bbox.max_y}"
39
+ "ENVELOPE(#{bbox.min_x}, #{bbox.max_x}, #{bbox.max_y}, #{bbox.min_y})"
40
40
  end
41
41
  end
42
42
  end
@@ -1,3 +1,3 @@
1
1
  module SearchSolrTools
2
- VERSION = '3.11.0'
2
+ VERSION = '4.0.1'
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.11.0
4
+ version: 4.0.1
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: 2019-06-10 00:00:00.000000000 Z
15
+ date: 2019-07-08 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: ffi-geos
@@ -376,8 +376,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
376
376
  - !ruby/object:Gem::Version
377
377
  version: '0'
378
378
  requirements: []
379
- rubyforge_project:
380
- rubygems_version: 2.7.7
379
+ rubygems_version: 3.0.3
381
380
  signing_key:
382
381
  specification_version: 4
383
382
  summary: Tools to harvest and manage various scientific dataset feeds in a Solr instance.