nasa-neo 1.5.3 → 1.5.4

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
  SHA256:
3
- metadata.gz: 57e007dcfb6fb5f2ca3c88bf1b172d073d513b88e4ff82df535535462399f28a
4
- data.tar.gz: 11c9111ee5340bbeeeaff948a47a141a7073aec31870fab10963261861b7327a
3
+ metadata.gz: 22f1cb79d45a13c56c7e82b3477dffc63bbd6b4263284cfd64d577d989076b54
4
+ data.tar.gz: ffdb87290dee179778a10c5f50710b90ca90bb3145c08557916d6808345a0ff6
5
5
  SHA512:
6
- metadata.gz: 7bb5b8d1a09904f9d6ce83a261201900d30534ba12dbca690f2bd69db720262834e653c8135be2059423b6c73ddb5ca61d144219f4c0bcab2a7c36b46e4b86d1
7
- data.tar.gz: a2ba11c55067abc8554b9ff2fea2e9cf451674ff2ac991e8b82cb8ea0b7afbf41763386f15b49343c38d5d41cd5b3c0af5d1c3ff1644ece4b6adb6465eefa9da
6
+ metadata.gz: 19b0825a7fc26fc8f8d28b99175673ddcb603af5a43526d5ab50c66885472276e715e466aad3755b7a9fedb40198b1f7fcacc5494482cbfe4e388e799b98c28b
7
+ data.tar.gz: 1b04dc15a32a14be0417538a620ee636a937865d6d730297da900662571b939dc34a4638e21d89f79a175f199ffe9900f999c07545c95f6133f5b4b2ae1527f2
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.5.4] - 2018-04-14
4
+
5
+ ### Added
6
+
7
+ - Updated gemspec meta information to include required Ruby version to 2.3.1
8
+ - Updated README.md description
9
+
10
+ ## [1.5.3] - 2018-04-14
11
+
12
+ ### Added
13
+
14
+ - Updated gemspec meta information to include documentation link
15
+
3
16
  ## [1.5.2] - 2018-04-14
4
17
 
5
18
  ### Added
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- nasa-neo (1.5.3)
4
+ nasa-neo (1.5.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,11 +1,9 @@
1
1
  # NASA Near Earth Object API Wrapper
2
2
 
3
- Gives details on the closest Near Earth Objects of the day. All Near Earth Objects can now be individually selected. Currently the NEO API only holds data from 1900 to 2200, any requests for information outside these years will return nil. Data is also limited to encounters with reasonably low uncertainty.
3
+ Gives details of Asteroids (Near Earth Objects) of the day (or set date) based on their closest approach date to Earth. All Near Earth Objects can now be individually selected. Currently the NEO API only holds data from 1900AD to 2200AD, any requests for information outside these years will return nil. Data is also limited to encounters with reasonably low uncertainty.
4
4
 
5
5
  ## Installation
6
6
 
7
- Written using `Ruby 2.6.1`
8
-
9
7
  Add this line to your application's Gemfile:
10
8
 
11
9
  ```ruby
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NasaNeo
4
- VERSION = "1.5.3".freeze
4
+ VERSION = "1.5.4".freeze
5
5
  end
@@ -4,14 +4,15 @@ require "nasa-neo/version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = 'nasa-neo'
7
- s.version = '1.5.3'
7
+ s.version = '1.5.4'
8
8
  s.date = '2019-04-09'
9
- s.summary = "This gem provides a simple wrapper for https://api.nasa.gov/api.html#NeoWS API"
10
- s.description = "Retrieve information about the closest near earth objects on any given day using the NASA NEO API. "
9
+ s.summary = "This gem provides a wrapper for https://api.nasa.gov/api.html#NeoWS API"
10
+ s.description = "Retrieve information about Asteroids (Near Earth Objects) based on their closest approach date to Earth on any given day using the NASA NEO API. "
11
11
  s.authors = ["James Sutherland"]
12
12
  s.email = 'jrsutherland78@googlemail.com'
13
13
  s.homepage = 'https://github.com/LondonJim/NASA-NEO-API-Wrapper'
14
14
  s.license = 'MIT'
15
+ s.required_ruby_version = '>= 2.3.1'
15
16
  s.metadata = { "homepage_uri" => "https://github.com/LondonJim/NASA-NEO-API-Wrapper",
16
17
  "documentation_uri" => "https://www.rubydoc.info/github/LondonJim/NASA-NEO-API-Wrapper/master",
17
18
  "changelog_uri" => "https://github.com/LondonJim/NASA-NEO-API-Wrapper/blob/master/CHANGELOG.md",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nasa-neo
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.3
4
+ version: 1.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Sutherland
@@ -78,8 +78,8 @@ dependencies:
78
78
  - - ">="
79
79
  - !ruby/object:Gem::Version
80
80
  version: 3.5.1
81
- description: 'Retrieve information about the closest near earth objects on any given
82
- day using the NASA NEO API. '
81
+ description: 'Retrieve information about Asteroids (Near Earth Objects) based on their
82
+ closest approach date to Earth on any given day using the NASA NEO API. '
83
83
  email: jrsutherland78@googlemail.com
84
84
  executables: []
85
85
  extensions: []
@@ -118,7 +118,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
118
118
  requirements:
119
119
  - - ">="
120
120
  - !ruby/object:Gem::Version
121
- version: '0'
121
+ version: 2.3.1
122
122
  required_rubygems_version: !ruby/object:Gem::Requirement
123
123
  requirements:
124
124
  - - ">="
@@ -126,9 +126,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
126
126
  version: '0'
127
127
  requirements: []
128
128
  rubyforge_project:
129
- rubygems_version: 2.7.9
129
+ rubygems_version: 2.7.8
130
130
  signing_key:
131
131
  specification_version: 4
132
- summary: This gem provides a simple wrapper for https://api.nasa.gov/api.html#NeoWS
133
- API
132
+ summary: This gem provides a wrapper for https://api.nasa.gov/api.html#NeoWS API
134
133
  test_files: []