nasa-neo 1.0.1 → 1.0.2
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/Gemfile.lock +1 -1
- data/README.md +1 -3
- data/lib/nasa-neo/version.rb +1 -1
- data/nasa-neo.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 347ccc9907b8dff966c7016a0cba5c321f7d8aaa49dd8ae79c55f7858ec6c20a
|
|
4
|
+
data.tar.gz: 4bd95851598a46a596eb559ba70f3faa86504426bdcf7d2e8d709fef73dd85a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a6f9ca27ccea8fef1713a9518f8189d5a8374a5a548436289c924e7e747db195ba4cb0a24d0a979f5fe5e0180c715e4dd0b249e941fbaeb958a07de7060ab5dc
|
|
7
|
+
data.tar.gz: eea53c26468243bf894fe55151842c4a219f40bc7235f6892d007d27a17f3528f0fa44c3a2c058f660a29f255d66c9e7ea9756389891cba3ea0f54a195b24971
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -6,8 +6,6 @@ Gives details on the closest Near Earth Object of the day.
|
|
|
6
6
|
|
|
7
7
|
Uses `Ruby 2.6.1`
|
|
8
8
|
|
|
9
|
-
`bundle`
|
|
10
|
-
|
|
11
9
|
Add this line to your application's Gemfile:
|
|
12
10
|
|
|
13
11
|
```ruby
|
|
@@ -20,7 +18,7 @@ And then execute:
|
|
|
20
18
|
|
|
21
19
|
Or install it yourself as:
|
|
22
20
|
|
|
23
|
-
$ gem install neo
|
|
21
|
+
$ gem install nasa-neo
|
|
24
22
|
|
|
25
23
|
## Instructions
|
|
26
24
|
A default api key of DEMO_KEY will let you make up to 30 requests per hour (50 per day), if you have your own api key (https://api.nasa.gov/index.html#apply-for-an-api-key) you can set it as detailed under instructions (developer API keys allow up to 1000 requests an hour)
|
data/lib/nasa-neo/version.rb
CHANGED
data/nasa-neo.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ require "nasa-neo/version"
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = 'nasa-neo'
|
|
7
|
-
s.version = '1.0.
|
|
7
|
+
s.version = '1.0.2'
|
|
8
8
|
s.date = '2019-04-09'
|
|
9
9
|
s.summary = "This gem provides a simple wrapper for https://api.nasa.gov/api.html#NeoWS API"
|
|
10
10
|
s.description = "Retrieve information about the closest near earth object using the NASA NEO API. "
|