jpl_missions 0.1.0
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 +7 -0
- data/.gitignore +8 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +20 -0
- data/LICENSE.txt +21 -0
- data/README.md +44 -0
- data/Rakefile +2 -0
- data/bin/jpl_missions +5 -0
- data/bin/setup +8 -0
- data/config/environment.rb +9 -0
- data/jpl_missions.gemspec +27 -0
- data/lib/jpl_missions/Mission.rb +34 -0
- data/lib/jpl_missions/Scraper.rb +20 -0
- data/lib/jpl_missions/cli.rb +90 -0
- data/lib/jpl_missions/version.rb +3 -0
- data/lib/jpl_missions.rb +5 -0
- data/spec.md +10 -0
- metadata +91 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 007bc972e775e3b9706447cf99fc406d26508e95c01c5c7cfc5608240ac4b6a6
|
|
4
|
+
data.tar.gz: 9ce946a1ea34a0ce660728e63989cd612c687b6ea8dd90e8f042139342e640e6
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 3219b6eb20242a603c6d8836d2de05ccd8b5950a3a6debe15917392cb71d327c3efad60187ad2660bbd4cb34f78860d3d89ddfcb562c7efbe71e6fa599c96667
|
|
7
|
+
data.tar.gz: 6581338dfae5f6b737f6556ab40cc87263425eec98cdf744c6fd895ccf64de5c892b278829f37cd8b1138c6fdecd7edf1f14695f5142eb4c77dfce428faa7717
|
data/.gitignore
ADDED
data/CODE_OF_CONDUCT.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
|
10
|
+
orientation.
|
|
11
|
+
|
|
12
|
+
## Our Standards
|
|
13
|
+
|
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
|
15
|
+
include:
|
|
16
|
+
|
|
17
|
+
* Using welcoming and inclusive language
|
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
|
19
|
+
* Gracefully accepting constructive criticism
|
|
20
|
+
* Focusing on what is best for the community
|
|
21
|
+
* Showing empathy towards other community members
|
|
22
|
+
|
|
23
|
+
Examples of unacceptable behavior by participants include:
|
|
24
|
+
|
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
26
|
+
advances
|
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
28
|
+
* Public or private harassment
|
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
|
30
|
+
address, without explicit permission
|
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
32
|
+
professional setting
|
|
33
|
+
|
|
34
|
+
## Our Responsibilities
|
|
35
|
+
|
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
|
38
|
+
response to any instances of unacceptable behavior.
|
|
39
|
+
|
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
|
44
|
+
threatening, offensive, or harmful.
|
|
45
|
+
|
|
46
|
+
## Scope
|
|
47
|
+
|
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
|
49
|
+
when an individual is representing the project or its community. Examples of
|
|
50
|
+
representing a project or community include using an official project e-mail
|
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
|
53
|
+
further defined and clarified by project maintainers.
|
|
54
|
+
|
|
55
|
+
## Enforcement
|
|
56
|
+
|
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
+
reported by contacting the project team at 'travis.e.petersen@gmail.com'. All
|
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
|
63
|
+
|
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
|
66
|
+
members of the project's leadership.
|
|
67
|
+
|
|
68
|
+
## Attribution
|
|
69
|
+
|
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
|
72
|
+
|
|
73
|
+
[homepage]: http://contributor-covenant.org
|
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
jpl_missions (0.1.0)
|
|
5
|
+
|
|
6
|
+
GEM
|
|
7
|
+
remote: https://rubygems.org/
|
|
8
|
+
specs:
|
|
9
|
+
rake (10.4.2)
|
|
10
|
+
|
|
11
|
+
PLATFORMS
|
|
12
|
+
ruby
|
|
13
|
+
|
|
14
|
+
DEPENDENCIES
|
|
15
|
+
bundler (~> 1.16)
|
|
16
|
+
jpl_missions!
|
|
17
|
+
rake (~> 10.0)
|
|
18
|
+
|
|
19
|
+
BUNDLED WITH
|
|
20
|
+
1.16.0
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2017 'Travis Petersen'
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# JplMissions
|
|
2
|
+
|
|
3
|
+
This Ruby Gem provides a command line interface to browse current, past, and future
|
|
4
|
+
missions of NASA's Jet Propulsion Laboratory in Pasadena, CA.
|
|
5
|
+
|
|
6
|
+
## Installation
|
|
7
|
+
|
|
8
|
+
Add this line to your application's Gemfile:
|
|
9
|
+
|
|
10
|
+
```ruby
|
|
11
|
+
gem 'jpl_missions'
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
And then execute:
|
|
15
|
+
|
|
16
|
+
$ bundle
|
|
17
|
+
|
|
18
|
+
Or install it yourself as:
|
|
19
|
+
|
|
20
|
+
$ gem install jpl_missions
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
Type the below and follow the on screen prompts
|
|
25
|
+
|
|
26
|
+
$ jpl_missions
|
|
27
|
+
|
|
28
|
+
## Development
|
|
29
|
+
|
|
30
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
31
|
+
|
|
32
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
33
|
+
|
|
34
|
+
## Contributing
|
|
35
|
+
|
|
36
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/'tpetersen0308'/jpl_missions. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
41
|
+
|
|
42
|
+
## Code of Conduct
|
|
43
|
+
|
|
44
|
+
Everyone interacting in the JplMissions project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/'tpetersen0308'/jpl_missions/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/jpl_missions
ADDED
data/bin/setup
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
require 'nokogiri'
|
|
2
|
+
require 'open-uri'
|
|
3
|
+
require 'pry'
|
|
4
|
+
|
|
5
|
+
require_relative '../lib/jpl_missions/cli.rb'
|
|
6
|
+
require_relative '../lib/jpl_missions/Mission.rb'
|
|
7
|
+
require_relative '../lib/jpl_missions/Scraper.rb'
|
|
8
|
+
require_relative '../lib/jpl_missions/version.rb'
|
|
9
|
+
require_relative '../lib/jpl_missions.rb'
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
|
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require "jpl_missions/version"
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "jpl_missions"
|
|
8
|
+
spec.version = JPLMissions::VERSION
|
|
9
|
+
spec.authors = ["'Travis Petersen'"]
|
|
10
|
+
spec.email = ["'travis.e.petersen@gmail.com'"]
|
|
11
|
+
|
|
12
|
+
spec.summary = %q{NASA JPL Missions}
|
|
13
|
+
spec.description = %q{This Ruby Gem provides a command line interface to browse current, past, and future
|
|
14
|
+
missions of NASA's Jet Propulsion Laboratory in Pasadena, CA.}
|
|
15
|
+
spec.homepage = "https://github.com/tpetersen0308/jpl-missions"
|
|
16
|
+
spec.license = "MIT"
|
|
17
|
+
|
|
18
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
19
|
+
f.match(%r{^(test|spec|features)/})
|
|
20
|
+
end
|
|
21
|
+
spec.bindir = "exe"
|
|
22
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
23
|
+
spec.require_paths = ["lib"]
|
|
24
|
+
|
|
25
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
|
26
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
27
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
class JPLMissions::Mission
|
|
2
|
+
attr_accessor :title, :launch_date, :description, :details
|
|
3
|
+
@@all = []
|
|
4
|
+
|
|
5
|
+
def initialize(title)
|
|
6
|
+
self.title = title
|
|
7
|
+
save
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def self.create_missions_from_array(array)
|
|
11
|
+
array.each do |mission_hash|
|
|
12
|
+
new_mission = self.new(mission_hash[:title])
|
|
13
|
+
new_mission.launch_date = mission_hash[:launch_date]
|
|
14
|
+
new_mission.description = mission_hash[:description]
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def self.find_from_user_input(input)
|
|
19
|
+
self.all[input.to_i - 1]
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def save
|
|
23
|
+
@@all << self
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def self.all
|
|
27
|
+
@@all
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def self.clear_all
|
|
31
|
+
@@all.clear
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
class JPLMissions::Scraper
|
|
2
|
+
|
|
3
|
+
def self.get_page(url)
|
|
4
|
+
Nokogiri::HTML(open(url))
|
|
5
|
+
end
|
|
6
|
+
|
|
7
|
+
def self.scrape_missions_from_url(url)
|
|
8
|
+
missions = []
|
|
9
|
+
self.get_page(url).css("div.list_text_content").each do |mission|
|
|
10
|
+
new_mission = {}
|
|
11
|
+
new_mission[:title] = mission.css(".content_title").text.strip
|
|
12
|
+
new_mission[:launch_date] = mission.css(".article_teaser_body").first.text
|
|
13
|
+
new_mission[:description] = mission.css(".article_teaser_body").last.text.strip
|
|
14
|
+
missions << new_mission
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
missions
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
end
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
class JPLMissions::CLI
|
|
2
|
+
|
|
3
|
+
def call
|
|
4
|
+
puts "Welcome to NASA JPL Missions!"
|
|
5
|
+
self.start
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
def start
|
|
9
|
+
main_menu
|
|
10
|
+
input = gets.chomp
|
|
11
|
+
case input
|
|
12
|
+
when /1|2|3|4/
|
|
13
|
+
#print list of selected Missions
|
|
14
|
+
self.list_missions(input)
|
|
15
|
+
when 'exit'
|
|
16
|
+
exit_cli
|
|
17
|
+
else
|
|
18
|
+
puts "I'm sorry, that's not an option."
|
|
19
|
+
puts "Please choose from the available options."
|
|
20
|
+
self.start
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def main_menu
|
|
25
|
+
puts (<<-DOC)
|
|
26
|
+
What kind of missions would you like to browse?
|
|
27
|
+
1. Current Missions
|
|
28
|
+
2. Past Missions
|
|
29
|
+
3. Future Missions
|
|
30
|
+
4. Proposed Missions
|
|
31
|
+
Enter 'exit' to quit
|
|
32
|
+
DOC
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def exit_cli
|
|
36
|
+
puts "For more information on NASA JPL and their missions,"
|
|
37
|
+
puts "visit https://www.jpl.nasa.gov"
|
|
38
|
+
puts "Goodbye!"
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
def list_missions(option)
|
|
42
|
+
case option
|
|
43
|
+
when '1'
|
|
44
|
+
list_missions_from_url('https://www.jpl.nasa.gov/missions/?search=&type=current&missions_target=&mission_type=&launch_date=#submit')
|
|
45
|
+
list_nav
|
|
46
|
+
when '2'
|
|
47
|
+
list_missions_from_url('https://www.jpl.nasa.gov/missions/?search=&type=past&missions_target=&mission_type=&launch_date=#submit')
|
|
48
|
+
list_nav
|
|
49
|
+
when '3'
|
|
50
|
+
list_missions_from_url('https://www.jpl.nasa.gov/missions/?search=&type=future&missions_target=&mission_type=&launch_date=#submit')
|
|
51
|
+
list_nav
|
|
52
|
+
when '4'
|
|
53
|
+
list_missions_from_url('https://www.jpl.nasa.gov/missions/?type=proposed')
|
|
54
|
+
list_nav
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
def list_missions_from_url(url)
|
|
59
|
+
JPLMissions::Mission.clear_all
|
|
60
|
+
missions_array = JPLMissions::Scraper.scrape_missions_from_url(url)
|
|
61
|
+
JPLMissions::Mission.create_missions_from_array(missions_array)
|
|
62
|
+
JPLMissions::Mission.all.each.with_index do |mission, index|
|
|
63
|
+
puts "#{index + 1}: #{mission.title}"
|
|
64
|
+
end
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
def list_nav
|
|
68
|
+
puts ""
|
|
69
|
+
puts ">> To learn more, select a mission."
|
|
70
|
+
puts ">> To return to the main menu, enter 'exit.'"
|
|
71
|
+
puts ""
|
|
72
|
+
input = gets.chomp
|
|
73
|
+
if input.between?('1', JPLMissions::Mission.all.size.to_s)
|
|
74
|
+
display_mission_details(input)
|
|
75
|
+
list_nav
|
|
76
|
+
elsif input == "exit"
|
|
77
|
+
start
|
|
78
|
+
else puts "Please select from the available options"
|
|
79
|
+
list_nav
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
def display_mission_details(input)
|
|
84
|
+
mission = JPLMissions::Mission.find_from_user_input(input)
|
|
85
|
+
puts "Mission Title: #{mission.title}"
|
|
86
|
+
puts "#{mission.launch_date}"
|
|
87
|
+
puts "About: #{mission.description}"
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
end
|
data/lib/jpl_missions.rb
ADDED
data/spec.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Specifications for the CLI Assessment
|
|
2
|
+
|
|
3
|
+
Specs:
|
|
4
|
+
- [x] Have a CLI for interfacing with the application
|
|
5
|
+
Built a CLI class with methods that control the logic flow of the program.
|
|
6
|
+
- [x] Pull data from an external source
|
|
7
|
+
Built a scraper class that pulls data from jpl.nasa.gov
|
|
8
|
+
- [x] Implement both list and detail views
|
|
9
|
+
CLI Program displays lists of types of missions based on user input and
|
|
10
|
+
displays details about missions based on further user input.
|
metadata
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: jpl_missions
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- "'Travis Petersen'"
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2017-11-23 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.16'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.16'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '10.0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '10.0'
|
|
41
|
+
description: |-
|
|
42
|
+
This Ruby Gem provides a command line interface to browse current, past, and future
|
|
43
|
+
missions of NASA's Jet Propulsion Laboratory in Pasadena, CA.
|
|
44
|
+
email:
|
|
45
|
+
- "'travis.e.petersen@gmail.com'"
|
|
46
|
+
executables: []
|
|
47
|
+
extensions: []
|
|
48
|
+
extra_rdoc_files: []
|
|
49
|
+
files:
|
|
50
|
+
- ".gitignore"
|
|
51
|
+
- CODE_OF_CONDUCT.md
|
|
52
|
+
- Gemfile
|
|
53
|
+
- Gemfile.lock
|
|
54
|
+
- LICENSE.txt
|
|
55
|
+
- README.md
|
|
56
|
+
- Rakefile
|
|
57
|
+
- bin/jpl_missions
|
|
58
|
+
- bin/setup
|
|
59
|
+
- config/environment.rb
|
|
60
|
+
- jpl_missions.gemspec
|
|
61
|
+
- lib/jpl_missions.rb
|
|
62
|
+
- lib/jpl_missions/Mission.rb
|
|
63
|
+
- lib/jpl_missions/Scraper.rb
|
|
64
|
+
- lib/jpl_missions/cli.rb
|
|
65
|
+
- lib/jpl_missions/version.rb
|
|
66
|
+
- spec.md
|
|
67
|
+
homepage: https://github.com/tpetersen0308/jpl-missions
|
|
68
|
+
licenses:
|
|
69
|
+
- MIT
|
|
70
|
+
metadata: {}
|
|
71
|
+
post_install_message:
|
|
72
|
+
rdoc_options: []
|
|
73
|
+
require_paths:
|
|
74
|
+
- lib
|
|
75
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
|
+
requirements:
|
|
77
|
+
- - ">="
|
|
78
|
+
- !ruby/object:Gem::Version
|
|
79
|
+
version: '0'
|
|
80
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
|
+
requirements:
|
|
82
|
+
- - ">="
|
|
83
|
+
- !ruby/object:Gem::Version
|
|
84
|
+
version: '0'
|
|
85
|
+
requirements: []
|
|
86
|
+
rubyforge_project:
|
|
87
|
+
rubygems_version: 2.7.2
|
|
88
|
+
signing_key:
|
|
89
|
+
specification_version: 4
|
|
90
|
+
summary: NASA JPL Missions
|
|
91
|
+
test_files: []
|