horror-movie-cli 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 0eeba775fc8473e11a68282bd80c03a106f65f34a5bf6c6717e0420c867e0003
4
+ data.tar.gz: 4dd07b3542858c97f0852cdee8bb8ea3970da92a2035feb8fc8d659ab8b76d1d
5
+ SHA512:
6
+ metadata.gz: 4fcddcf4611a6e7e1531e19d195480e2786ae9d311277fd0bf5a0321bb8e86d6954a14d488f9ffe960dce1645b8bbf10bc794dfc6437be0fb8102d998a46ec23
7
+ data.tar.gz: e96222af78d64856a46bf5c3efbd0c4a0758950a056db47bab08f414ff402852a835cfa89edd759fb64a122e03ffd36787f4f34b82a2896bf3585d5f1ffd1277
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
@@ -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 'jazminmerckel@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
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in horror-movie-cli.gemspec
4
+ gemspec
5
+ gem "nokogiri"
6
+ gem "colorize"
@@ -0,0 +1,26 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ horror-movie-cli (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ colorize (0.8.1)
10
+ mini_portile2 (2.4.0)
11
+ nokogiri (1.10.5)
12
+ mini_portile2 (~> 2.4.0)
13
+ rake (10.5.0)
14
+
15
+ PLATFORMS
16
+ ruby
17
+
18
+ DEPENDENCIES
19
+ bundler (~> 2.0)
20
+ colorize
21
+ horror-movie-cli!
22
+ nokogiri
23
+ rake (~> 10.0)
24
+
25
+ BUNDLED WITH
26
+ 2.1.0.pre.1
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 'Jazmin M'
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.
@@ -0,0 +1,47 @@
1
+ # The Rotten Tomatoes: Top 25 Horror Movie - Ruby CLI Gem
2
+
3
+ Welcome! This Ruby CLI Gem provides a listing of the Top 25 Horror Movies from the Rotten Tomatoes website. Through this gem the user will be able to see the list, obtain specific movie information, a summary, and a random critic's review.
4
+
5
+ ## Demo Video
6
+
7
+ To be updated.
8
+
9
+ ## Installing the Horror-Movie-CLI-Gem
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ ```ruby
14
+ gem 'horror-movie-cli'
15
+ ```
16
+
17
+ And then execute:
18
+
19
+ $ bundle
20
+
21
+ Or install it yourself as:
22
+
23
+ $ gem install horror-movie-cli
24
+
25
+ ## Using the Horror-Movie-CLI-Gem
26
+
27
+ To execute the gem, type `$ horror-movie-cli` and follow the on-screen prompts.
28
+
29
+ To exit the program, type `exit` when prompted for input.
30
+
31
+ ## Development
32
+
33
+ After checking out the repo, run `bundle` to install dependencies.
34
+
35
+ 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).
36
+
37
+ ## Contributing
38
+
39
+ Bug reports and pull requests are welcome on GitHub at https://github.com/watchjazcode/horror-movie-cli. 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.
40
+
41
+ ## License
42
+
43
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
44
+
45
+ ## Code of Conduct
46
+
47
+ Everyone interacting in the project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/watchjazcode/horror-movie-cli/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "horror/movie/cli"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require_relative '../lib/horror/movie/cli'
4
+
5
+ Horror::Movie::Cli.new.welcome
@@ -0,0 +1,40 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "horror/movie/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "horror-movie-cli"
8
+ spec.version = Horror::Movie::VERSION
9
+ spec.authors = ["'Jazmin M'"]
10
+ spec.email = ["'jazminmerckel@gmail.com'"]
11
+
12
+ spec.summary = %q{Horror movie CLI}
13
+ spec.description = %q{This Ruby CLI Gem provides a listing of the Top 25 Horror Movies from the Rotten Tomatoes website.}
14
+ spec.homepage = "https://github.com/watchjazcode/horror-movie-cli"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ if spec.respond_to?(:metadata)
20
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
21
+
22
+ spec.metadata["homepage_uri"] = spec.homepage
23
+ spec.metadata["source_code_uri"] = "https://github.com/watchjazcode/horror-movie-cli"
24
+ spec.metadata["changelog_uri"] = "https://github.com/watchjazcode/horror-movie-cli"
25
+ else
26
+ raise "RubyGems 2.0 or newer is required to protect against " \
27
+ "public gem pushes."
28
+ end
29
+
30
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
31
+ `git ls-files -z`.split("\x0").reject do |f|
32
+ f.end_with?(".gem")
33
+ end
34
+ end
35
+ spec.executables = ["top_horror_movies"]
36
+ spec.require_paths = ["lib"]
37
+
38
+ spec.add_development_dependency "bundler", "~> 2.0"
39
+ spec.add_development_dependency "rake", "~> 10.0"
40
+ end
Binary file
@@ -0,0 +1,150 @@
1
+ require_relative "../movie/scraper.rb"
2
+ require_relative "../movie/listing.rb"
3
+ require_relative "../movie/info.rb"
4
+
5
+ module Horror
6
+ module Movie
7
+ class Cli
8
+ def welcome
9
+ Horror::Movie::Scraper.new.scrape_horror_movies
10
+ puts File.read("lib/horror/movie/intro.txt").colorize :red
11
+ puts ""
12
+ puts "Hello! Welcome to the Rotten Tomatoes: Top 25 Horror Movies List.".colorize :red
13
+ puts ""
14
+ main_program
15
+ end
16
+
17
+ def main_program
18
+
19
+ print_movies
20
+
21
+ puts "------------------------------------------------".colorize :red
22
+ puts ""
23
+ puts "Would you like further information on a movie?".colorize :red
24
+ puts ""
25
+ puts "------------------------------------------------".colorize :red
26
+ puts "If yes, please enter a number 1-25.".colorize :red
27
+ puts "If not, please enter no.".colorize :red
28
+ puts ""
29
+
30
+ movie = correct_number?
31
+
32
+ puts "------------------------------------------------".colorize :red
33
+ puts "Would you like to see the movie's summary and a random review?".colorize :red
34
+ puts ""
35
+ puts "Please enter yes or no.".colorize :red
36
+ puts ""
37
+
38
+ summary_and_review?(movie)
39
+
40
+ puts ""
41
+ puts "Would you like to see information on another movie?".colorize :red
42
+ puts ""
43
+ puts "Please enter yes or no.".colorize :red
44
+ puts ""
45
+
46
+ another_movie?
47
+ end
48
+
49
+ def correct_number?
50
+ input = gets.strip
51
+ until input.downcase == "no" || (1..25).include?(input.to_i) || input.downcase == "exit"
52
+ puts ""
53
+ puts "------------------------------------------------".colorize :red
54
+ puts "Invalid answer.".colorize :red
55
+ puts ""
56
+ input = gets.strip
57
+ end
58
+ if (1..25).include? input.to_i
59
+ movie = Horror::Movie::Listing.find(input.to_i)
60
+ print_movie(movie)
61
+ return movie
62
+ elsif input.downcase == "no" || input.downcase == "exit"
63
+ goodbye
64
+ end
65
+ end
66
+
67
+
68
+ def summary_and_review?(movie)
69
+ input = gets.strip.downcase
70
+ until input == "yes" || input == "no" || input == "exit"
71
+ puts ""
72
+ puts "------------------------------------------------".colorize :red
73
+ puts "Invalid answer.".colorize :red
74
+ puts ""
75
+ input = gets.strip.downcase
76
+ end
77
+ if input == "yes"
78
+ print_movie_info(movie)
79
+ elsif input == "no"
80
+ elsif input == "exit"
81
+ goodbye
82
+ end
83
+ end
84
+
85
+ def another_movie?
86
+ input = gets.strip.downcase
87
+ until input == "yes" || input == "no" || input == "exit"
88
+ puts ""
89
+ puts "------------------------------------------------".colorize :red
90
+ puts "Invalid answer.".colorize :red
91
+ puts ""
92
+ input = gets.strip.downcase
93
+ end
94
+ if input == "yes"
95
+ main_program
96
+ elsif input == "no" || input == "exit"
97
+ goodbye
98
+ end
99
+ end
100
+
101
+ def print_movie(movie)
102
+ puts ""
103
+ puts "---------------- Movie Stats ---------------".colorize :red
104
+ puts ""
105
+ puts "Rank: #{movie.rank}"
106
+ puts "Rating: #{movie.rating}"
107
+ puts "Movie Title: #{movie.movie_title}"
108
+ puts "Movie Url: #{movie.movie_url}"
109
+ puts "Number of Reviews: #{movie.number_of_reviews}"
110
+ puts ""
111
+ end
112
+
113
+ def print_movie_info(movie)
114
+ movie_info = movie.movie_info
115
+ puts ""
116
+ puts "---------------- Movie Synopsis ---------------".colorize :red
117
+ puts ""
118
+ puts "#{movie_info.movie_synopsis}"
119
+ puts ""
120
+ puts "---------------- Random Review ----------------".colorize :red
121
+ puts ""
122
+ puts "#{movie_info.movie_review}"
123
+ puts ""
124
+ puts "------------------------------------------------".colorize :red
125
+ end
126
+
127
+ def print_movies
128
+ puts ""
129
+ puts "---------- Rotten Tomatoes: Top 25 Horror Movies ----------".colorize :red
130
+ puts ""
131
+ Horror::Movie::Listing.all.each.with_index do |movie, index|
132
+ puts "#{index + 1}. #{movie.movie_title}"
133
+ end
134
+ end
135
+
136
+ def goodbye
137
+ puts ""
138
+ puts "------------------------------------------------".colorize :red
139
+ puts "Thank you for your interest. Have a spooky day!".colorize :red
140
+ puts ""
141
+ puts ""
142
+ puts File.read("lib/horror/movie/skull.txt").colorize :red
143
+ puts ""
144
+ puts "------------------------------------------------".colorize :red
145
+ exit
146
+ end
147
+ end
148
+ end
149
+ end
150
+
@@ -0,0 +1,22 @@
1
+ module Horror
2
+ module Movie
3
+ class Info
4
+
5
+ def initialize(doc)
6
+ @doc = doc
7
+ end
8
+
9
+ def movie_synopsis
10
+ @movie_synopsis = @doc.css("#movieSynopsis").text.strip
11
+ end
12
+
13
+ def movie_review
14
+ reviews = []
15
+ @doc.css(".quote_bubble__quote p").each do |review|
16
+ reviews << review.text.strip
17
+ end
18
+ reviews.sample
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+
2
+
3
+ ▄▄▄█████▓ ▒█████ ██▓███ ██░ ██ ▒█████ ██▀███ ██▀███ ▒█████ ██▀███
4
+ ▓ ██▒ ▓▒▒██▒ ██▒▓██░ ██▒ ▓██░ ██▒▒██▒ ██▒▓██ ▒ ██▒▓██ ▒ ██▒▒██▒ ██▒▓██ ▒ ██▒
5
+ ▒ ▓██░ ▒░▒██░ ██▒▓██░ ██▓▒ ▒██▀▀██░▒██░ ██▒▓██ ░▄█ ▒▓██ ░▄█ ▒▒██░ ██▒▓██ ░▄█ ▒
6
+ ░ ▓██▓ ░ ▒██ ██░▒██▄█▓▒ ▒ ░▓█ ░██ ▒██ ██░▒██▀▀█▄ ▒██▀▀█▄ ▒██ ██░▒██▀▀█▄
7
+ ▒██▒ ░ ░ ████▓▒░▒██▒ ░ ░ ░▓█▒░██▓░ ████▓▒░░██▓ ▒██▒░██▓ ▒██▒░ ████▓▒░░██▓ ▒██▒
8
+ ▒ ░░ ░ ▒░▒░▒░ ▒▓▒░ ░ ░ ▒ ░░▒░▒░ ▒░▒░▒░ ░ ▒▓ ░▒▓░░ ▒▓ ░▒▓░░ ▒░▒░▒░ ░ ▒▓ ░▒▓░
9
+ ░ ░ ▒ ▒░ ░▒ ░ ▒ ░▒░ ░ ░ ▒ ▒░ ░▒ ░ ▒░ ░▒ ░ ▒░ ░ ▒ ▒░ ░▒ ░ ▒░
10
+ ░ ░ ░ ░ ▒ ░░ ░ ░░ ░░ ░ ░ ▒ ░░ ░ ░░ ░ ░ ░ ░ ▒ ░░ ░
11
+ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░
12
+
13
+ ███▄ ▄███▓ ▒█████ ██▒ █▓ ██▓▓█████ ██████
14
+ ▓██▒▀█▀ ██▒▒██▒ ██▒▓██░ █▒▓██▒▓█ ▀ ▒██ ▒
15
+ ▓██ ▓██░▒██░ ██▒ ▓██ █▒░▒██▒▒███ ░ ▓██▄
16
+ ▒██ ▒██ ▒██ ██░ ▒██ █░░░██░▒▓█ ▄ ▒ ██▒
17
+ ▒██▒ ░██▒░ ████▓▒░ ▒▀█░ ░██░░▒████▒▒██████▒▒
18
+ ░ ▒░ ░ ░░ ▒░▒░▒░ ░ ▐░ ░▓ ░░ ▒░ ░▒ ▒▓▒ ▒ ░
19
+ ░ ░ ░ ░ ▒ ▒░ ░ ░░ ▒ ░ ░ ░ ░░ ░▒ ░ ░
20
+ ░ ░ ░ ░ ░ ▒ ░░ ▒ ░ ░ ░ ░ ░
21
+ ░ ░ ░ ░ ░ ░ ░ ░
22
+
@@ -0,0 +1,48 @@
1
+ module Horror
2
+ module Movie
3
+ class Listing
4
+
5
+ @@all = []
6
+
7
+ def initialize(row)
8
+ @row = row
9
+ @@all << self
10
+ end
11
+
12
+ def rank
13
+ @movie_rank ||= @row.css(".bold").text
14
+ end
15
+
16
+ def rating
17
+ @movie_rating ||= @row.css(".tMeterScore").text.delete " "
18
+ #not a blank space, special character "tomatometer icon"
19
+ end
20
+
21
+ def movie_title
22
+ @movie_title ||= @row.css(".unstyled.articleLink").text.strip
23
+ end
24
+
25
+ def movie_url
26
+ @movie_url ||= @row.css(".unstyled.articleLink").attribute("href").value
27
+ "https://www.rottentomatoes.com#{@movie_url}"
28
+ end
29
+
30
+ def number_of_reviews
31
+ @number_of_reviews ||= @row.css(".right.hidden-xs").text
32
+ end
33
+
34
+ def movie_info
35
+ doc = Horror::Movie::Scraper.new.movie_info(self)
36
+ Horror::Movie::Info.new(doc)
37
+ end
38
+
39
+ def self.all
40
+ @@all
41
+ end
42
+
43
+ def self.find(id)
44
+ self.all[id-1]
45
+ end
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,27 @@
1
+ require 'nokogiri'
2
+ require 'open-uri'
3
+ require 'colorize'
4
+
5
+ module Horror
6
+ module Movie
7
+ class Scraper
8
+ def initialize
9
+ @site = "https://www.rottentomatoes.com/top/bestofrt/top_100_horror_movies/"
10
+ @doc = Nokogiri::HTML(open(@site))
11
+ end
12
+
13
+ def scrape_horror_movies
14
+ rows = @doc.css("table.table tr")
15
+ rows.shift
16
+ rows[0..24].each do |row|
17
+ listing = Horror::Movie::Listing.new(row)
18
+ end
19
+ end
20
+
21
+ def movie_info(movie)
22
+ Nokogiri::HTML(open(movie.movie_url))
23
+ end
24
+ end
25
+ end
26
+ end
27
+
@@ -0,0 +1,15 @@
1
+ ,-""""-. ,-'""`-.
2
+ / \ ; :
3
+ :(_) (_); : :
4
+ ` '` ' : (_) (_) ;
5
+ `++++' ` '` '
6
+ `--' :`++++';
7
+ ``..''
8
+
9
+ ,-""""-. ,-'""`-.
10
+ / \ ; :
11
+ :(_) (_); : :
12
+ ` '` ' : (_) (_) ;
13
+ `++++' ` '` '
14
+ `--' :`++++';
15
+ ``..''
@@ -0,0 +1,5 @@
1
+ module Horror
2
+ module Movie
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: horror-movie-cli
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - "'Jazmin M'"
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-11-22 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: '2.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
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: This Ruby CLI Gem provides a listing of the Top 25 Horror Movies from
42
+ the Rotten Tomatoes website.
43
+ email:
44
+ - "'jazminmerckel@gmail.com'"
45
+ executables:
46
+ - top_horror_movies
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/console
58
+ - bin/setup
59
+ - bin/top_horror_movies
60
+ - horror-movie-cli.gemspec
61
+ - lib/horror/.DS_Store
62
+ - lib/horror/movie/.DS_Store
63
+ - lib/horror/movie/cli.rb
64
+ - lib/horror/movie/info.rb
65
+ - lib/horror/movie/intro.txt
66
+ - lib/horror/movie/listing.rb
67
+ - lib/horror/movie/scraper.rb
68
+ - lib/horror/movie/skull.txt
69
+ - lib/horror/movie/version.rb
70
+ homepage: https://github.com/watchjazcode/horror-movie-cli
71
+ licenses:
72
+ - MIT
73
+ metadata:
74
+ allowed_push_host: https://rubygems.org
75
+ homepage_uri: https://github.com/watchjazcode/horror-movie-cli
76
+ source_code_uri: https://github.com/watchjazcode/horror-movie-cli
77
+ changelog_uri: https://github.com/watchjazcode/horror-movie-cli
78
+ post_install_message:
79
+ rdoc_options: []
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ requirements: []
93
+ rubygems_version: 3.0.6
94
+ signing_key:
95
+ specification_version: 4
96
+ summary: Horror movie CLI
97
+ test_files: []