movie_recommender 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 6c0b8db3c945959626dd1312491f2877a128802d4612fb23fbd8edb2eb7b7e9b
4
+ data.tar.gz: 4dda03639295ec9f5fb48b1ffbec84532f784b8aea19cddb8eee3e15716ed9d6
5
+ SHA512:
6
+ metadata.gz: 7a51a3f92865fadb2a52987d9f945fab77910e158a1cb581edc9731f923db68824fe068e0d69ab481c0098da71222765f23ed5cd6909e3b509f0ffb7b22c648a
7
+ data.tar.gz: 531770fac3a40895582c65f8828c42c29f7d3c8b1c9549f4d68f87fc76c2406d5e9358372824af1fd561a5bf5e9f50dc2b6c3c92f10b406ab4d63aa7bfce65f8
data/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
data/.rubocop.yml ADDED
@@ -0,0 +1,13 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+
4
+ Style/StringLiterals:
5
+ Enabled: true
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Layout/LineLength:
13
+ Max: 120
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2021-05-31
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at jinhuangjie233@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in movie_recommender.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rubocop", "~> 1.7"
data/Gemfile.lock ADDED
@@ -0,0 +1,52 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ movie_recommender (0.1.1)
5
+ nokogiri
6
+ require_all
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ ast (2.4.2)
12
+ coderay (1.1.3)
13
+ method_source (1.0.0)
14
+ nokogiri (1.11.6-x86_64-darwin)
15
+ racc (~> 1.4)
16
+ parallel (1.20.1)
17
+ parser (3.0.1.1)
18
+ ast (~> 2.4.1)
19
+ pry (0.14.1)
20
+ coderay (~> 1.1)
21
+ method_source (~> 1.0)
22
+ racc (1.5.2)
23
+ rainbow (3.0.0)
24
+ rake (13.0.3)
25
+ regexp_parser (2.1.1)
26
+ require_all (3.0.0)
27
+ rexml (3.2.5)
28
+ rubocop (1.15.0)
29
+ parallel (~> 1.10)
30
+ parser (>= 3.0.0.0)
31
+ rainbow (>= 2.2.2, < 4.0)
32
+ regexp_parser (>= 1.8, < 3.0)
33
+ rexml
34
+ rubocop-ast (>= 1.5.0, < 2.0)
35
+ ruby-progressbar (~> 1.7)
36
+ unicode-display_width (>= 1.4.0, < 3.0)
37
+ rubocop-ast (1.7.0)
38
+ parser (>= 3.0.1.1)
39
+ ruby-progressbar (1.11.0)
40
+ unicode-display_width (2.0.0)
41
+
42
+ PLATFORMS
43
+ x86_64-darwin-20
44
+
45
+ DEPENDENCIES
46
+ movie_recommender!
47
+ pry
48
+ rake (~> 13.0)
49
+ rubocop (~> 1.7)
50
+
51
+ BUNDLED WITH
52
+ 2.2.19
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2021 HuangjieJin
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,43 @@
1
+ # MovieRecommender
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/movie_recommender`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'movie_recommender'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install movie_recommender
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ 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.
30
+
31
+ 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 the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/movie_recommender. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/movie_recommender/blob/master/CODE_OF_CONDUCT.md).
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
40
+
41
+ ## Code of Conduct
42
+
43
+ Everyone interacting in the MovieRecommender project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/movie_recommender/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rubocop/rake_task"
5
+
6
+ RuboCop::RakeTask.new
7
+
8
+ task default: :rubocop
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "bundler/setup"
5
+ require_relative "../lib/movie_recommender"
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require "irb"
15
+ IRB.start(__FILE__)
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require_relative "../lib/movie_recommender"
5
+
6
+ MovieRecommender::CLI.new.start
data/bin/setup ADDED
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+
9
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,7 @@
1
+ require "require_all"
2
+ require "nokogiri"
3
+ require "open-uri"
4
+ require 'pry'
5
+
6
+ require_all "lib"
7
+
@@ -0,0 +1,96 @@
1
+ class MovieRecommender::CLI
2
+ attr_accessor :scraper
3
+
4
+ @@location = []
5
+
6
+ def initialize
7
+ end
8
+
9
+ def start
10
+ puts "Hi! Welcome to MovieRecommender"
11
+ puts "Do you want to want to list movies currently in theaters near to your location?"
12
+ puts "**Input [Y] to continue or input [N] to exit**"
13
+
14
+ input = gets.strip
15
+
16
+ if input.downcase == "y"
17
+ postalcode_prompt
18
+ elsif input.downcase == "n"
19
+ exit
20
+ else
21
+ puts "Invaild input!"
22
+ start
23
+ end
24
+ end
25
+
26
+ def postalcode_prompt
27
+ puts "Please enter the postal code of your location"
28
+ input = gets.strip
29
+ @@location << input
30
+ location_prompt
31
+ end
32
+
33
+ def location_prompt
34
+ puts "Please enter your location from the following list"
35
+ puts "AR, AU, CA, CL, DE, ES, FR, IT, MX, NZ, PT, UK, US"
36
+ input = gets.strip
37
+ @@location << input
38
+ list_movies
39
+ end
40
+
41
+ def list_movies
42
+ scraper = MovieRecommender::Scraper.new
43
+ scraper.scrape_movies.each.with_index(1) do |movie, index|
44
+ puts "#{index}. #{movie.title}"
45
+ end
46
+ prompt_user
47
+ end
48
+
49
+ def prompt_user
50
+ puts "*************************************"
51
+ puts "Enter the number of the movie you want to check the detail."
52
+ puts "Input [exit] to quit."
53
+ puts "*************************************"
54
+
55
+ input = ""
56
+
57
+ while input.downcase != "exit"
58
+ input = gets.strip
59
+ actual_input = input.to_i-1
60
+
61
+ if input.to_i != 0 && input.to_i <= MovieRecommender::Movie.all.size
62
+ url = MovieRecommender::Movie.all[actual_input].url
63
+ title = MovieRecommender::Movie.all[actual_input].title
64
+ scraper = MovieRecommender::Scraper.new
65
+ scraper.scrape_details(url)
66
+ score = scraper.score
67
+ description = scraper.description
68
+ puts "*******#{title} |IMDB:#{score}|*******"
69
+ puts "***************SUMMARY***************"
70
+ puts description
71
+ puts "*************************************"
72
+ puts "Enter the number of the movie you want to check the detail."
73
+ puts "Input [exit] to quit."
74
+ puts "*************************************"
75
+ elsif input.downcase == "exit"
76
+ puts "See you next time."
77
+ exit
78
+ else
79
+ puts "Invaild input. Please try again."
80
+ end
81
+ end
82
+ end
83
+
84
+
85
+
86
+
87
+
88
+ def self.all
89
+ @@location
90
+ end
91
+
92
+ def self.clear
93
+ @@location.clear
94
+ end
95
+
96
+ end
@@ -0,0 +1,23 @@
1
+ class MovieRecommender::Movie
2
+ attr_accessor :title, :url
3
+
4
+ @@all =[]
5
+
6
+ def initialize(title:, url:)
7
+ @title = title
8
+ @url = url
9
+ @@all << self
10
+ end
11
+
12
+ def self.all
13
+ @@all
14
+ end
15
+
16
+ def self.destroy
17
+ @@all.clear
18
+ end
19
+
20
+
21
+ end
22
+
23
+
@@ -0,0 +1,45 @@
1
+ require "require_all"
2
+ class MovieRecommender::Scraper
3
+ attr_accessor :base_url, :html, :document, :description, :score
4
+
5
+ def initialize
6
+ location = MovieRecommender::CLI.all[1]
7
+ postal_code = MovieRecommender::CLI.all[0]
8
+ @base_url = "https://www.imdb.com/"
9
+ @html = open("#{@base_url}/showtimes/location/#{location}/#{postal_code}")
10
+ @document = Nokogiri::HTML(html)
11
+ end
12
+
13
+ def scrape_movies
14
+ self.document.css(".lister-item.mode-grid").collect do |movie|
15
+ title = movie.css(".title").text.strip
16
+ url = movie.css(".title").css("a").attr("href").value.split("/").slice(2, 3).join("/")
17
+ MovieRecommender::Movie.new(title: title, url: url)
18
+ end
19
+ end
20
+
21
+ def scrape_details(url)
22
+ html = open("#{@base_url}/#{url}")
23
+ document = Nokogiri::HTML(html)
24
+ @score = document.css(".AggregateRatingButton__RatingScore-sc-1il8omz-1.fhMjqK").text.strip
25
+ description_row = document.css(".ipc-html-content.ipc-html-content--base").first.text.strip.split(".")
26
+ description_row.pop()
27
+ @description = description_row.join(".")
28
+ end
29
+ end
30
+
31
+
32
+
33
+ # score:doc.css(".AggregateRatingButton__RatingScore-sc-1il8omz-1.fhMjqK").text.strip
34
+
35
+ # description_row = doc.css(".ipc-html-content.ipc-html-content--base").first.text.strip.split(".")
36
+ # description_row.pop()
37
+ # description = description_row.join(".")
38
+
39
+
40
+
41
+
42
+ #title = doc.css(".lister-item.mode-grid").first.css(".title").text
43
+ #url = doc.css(".lister-item.mode-grid").first.css(".title").css("a").attr("href").value address:"/showtimes/title/tt11083552/"
44
+ #grade = doc.css(".AggregateRatingButton__RatingScore-sc-1il8omz-1.fhMjqK").text
45
+ #description = doc.css(".GenresAndPlot__TextContainerBreakpointXL-cum89p-4.liTOue").text
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module MovieRecommender
4
+ VERSION = "0.1.1"
5
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "../config/environment"
4
+
5
+ module MovieRecommender
6
+ class Error < StandardError; end
7
+
8
+ end
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/movie_recommender/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "movie_recommender"
7
+ spec.version = MovieRecommender::VERSION
8
+ spec.authors = ["HuangjieJin"]
9
+ spec.email = ["jinhuangjie233@gmail.com"]
10
+
11
+ spec.summary = "This a CLI app that recommends recent movies"
12
+ spec.description = "This a CLI app that recommends recent movies"
13
+ spec.homepage = "https://github.com/JayJinX"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
16
+
17
+ # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
18
+
19
+ spec.metadata["homepage_uri"] = spec.homepage
20
+ spec.metadata["source_code_uri"] = "https://github.com/JayJinX/Movie-Recommender"
21
+ spec.metadata["changelog_uri"] = "https://github.com/JayJinX/Movie-Recommender.CHANGELOG.md"
22
+
23
+ # Specify which files should be added to the gem when it is released.
24
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
26
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
27
+ end
28
+ # spec.bindir = "exe"
29
+ spec.executables << 'movie_recommender'
30
+ # spec.require_paths = ["lib"]
31
+
32
+ # Uncomment to register a new dependency of your gem
33
+ # spec.add_dependency "example-gem", "~> 1.0"
34
+ spec.add_dependency "nokogiri"
35
+ spec.add_dependency "require_all"
36
+ spec.add_development_dependency "pry"
37
+
38
+ # For more information and examples about making a new gem, checkout our
39
+ # guide at: https://bundler.io/guides/creating_gem.html
40
+ end
metadata ADDED
@@ -0,0 +1,108 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: movie_recommender
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - HuangjieJin
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-06-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: nokogiri
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: require_all
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: pry
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: This a CLI app that recommends recent movies
56
+ email:
57
+ - jinhuangjie233@gmail.com
58
+ executables:
59
+ - movie_recommender
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".gitignore"
64
+ - ".rubocop.yml"
65
+ - CHANGELOG.md
66
+ - CODE_OF_CONDUCT.md
67
+ - Gemfile
68
+ - Gemfile.lock
69
+ - LICENSE.txt
70
+ - README.md
71
+ - Rakefile
72
+ - bin/console
73
+ - bin/movie_recommender
74
+ - bin/setup
75
+ - config/environment.rb
76
+ - lib/movie_recommender.rb
77
+ - lib/movie_recommender/cli.rb
78
+ - lib/movie_recommender/movie.rb
79
+ - lib/movie_recommender/scraper.rb
80
+ - lib/movie_recommender/version.rb
81
+ - movie_recommender.gemspec
82
+ homepage: https://github.com/JayJinX
83
+ licenses:
84
+ - MIT
85
+ metadata:
86
+ homepage_uri: https://github.com/JayJinX
87
+ source_code_uri: https://github.com/JayJinX/Movie-Recommender
88
+ changelog_uri: https://github.com/JayJinX/Movie-Recommender.CHANGELOG.md
89
+ post_install_message:
90
+ rdoc_options: []
91
+ require_paths:
92
+ - lib
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: 2.6.0
98
+ required_rubygems_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ requirements: []
104
+ rubygems_version: 3.0.9
105
+ signing_key:
106
+ specification_version: 4
107
+ summary: This a CLI app that recommends recent movies
108
+ test_files: []