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 +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +15 -12
- data/lib/search_solr_tools/helpers/translate_spatial_coverage.rb +1 -1
- data/lib/search_solr_tools/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0382657017a7d0cc8bc41326d81f5c5bb4119fba404f6dbbdc903080ebb88722'
|
|
4
|
+
data.tar.gz: 0ca907ef6d78f9212c1af2d421c8c0280614958c1e9c2694df3522230ae4c10a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b1289b38c0ef0f39f66ca5ed913be6db354a50d8a4001dc86db098090c6f27513c62997205d370da769d517879b6f603df381ebfa3d016102b72657298794f9a
|
|
7
|
+
data.tar.gz: eb9b7978b9b7a92f3757320256e42696062ed8a06f478ff2fddb987a911ca159836716ce66e0fc1a199a33f315c2acda4426829f41d47e11b6b1088f53d27fdd
|
data/CHANGELOG.md
CHANGED
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
|
|
136
|
-
|
|
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.
|
|
39
|
+
"ENVELOPE(#{bbox.min_x}, #{bbox.max_x}, #{bbox.max_y}, #{bbox.min_y})"
|
|
40
40
|
end
|
|
41
41
|
end
|
|
42
42
|
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:
|
|
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-
|
|
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
|
-
|
|
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.
|