crowder_news 0.1.3

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 0c7c01afae8c729c166ca6c2f4808b6feb1d102064fab4a1a60a96f96625c4c1
4
+ data.tar.gz: dd54e58e3566e519099e7de310a4f995f435659f27447909ef09b50f5b2989b8
5
+ SHA512:
6
+ metadata.gz: b80232cfef1c3ca331a44d622ce580c7f45f05ede69417f6f42dc4aee1bf2bb877d6d029742feb2ef6986cce62610cb138ef8ae862a523b29cbf4e032200a4d6
7
+ data.tar.gz: d538cc90f09fbea96819fbdaec7978f3bbdac4fa49e1d5340ca786e08c98a6ec437d2aaba19737dba8c3120a53a66d37b76a346f5c0a6bfb408b63faf1e76d91
data/.gitignore ADDED
@@ -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 'raustin.melchior@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
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in crowder_news.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,30 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ crowder_news (0.1.0)
5
+ nokogiri
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ coderay (1.1.2)
11
+ method_source (0.9.0)
12
+ mini_portile2 (2.3.0)
13
+ nokogiri (1.8.2)
14
+ mini_portile2 (~> 2.3.0)
15
+ pry (0.11.3)
16
+ coderay (~> 1.1.0)
17
+ method_source (~> 0.9.0)
18
+ rake (10.4.2)
19
+
20
+ PLATFORMS
21
+ ruby
22
+
23
+ DEPENDENCIES
24
+ bundler (~> 1.16)
25
+ crowder_news!
26
+ pry
27
+ rake (~> 10.0)
28
+
29
+ BUNDLED WITH
30
+ 1.16.2
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 'Richard Melchior'
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,38 @@
1
+ # CrowderNews
2
+
3
+ Welcome to CrowderNews! Crowder news is a gem that scrapes the LouderWithCrowder website for news articles and allows you to view recent and feature articles. The CLI is simple with concise instruction and is very easy to use!
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'crowder_news'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install crowder_news
20
+
21
+ ## Usage
22
+
23
+ 1. Start the program using "./bin/crowder_news".
24
+ 2. Choose which mode you would like the list to use.
25
+ 3. Choose an article from the list.
26
+ 4. Follow the prompts to move between menus and articles
27
+
28
+ ## Contributing
29
+
30
+ Bug reports and pull requests are welcome on GitHub at https://github.com/'Sillhouette'/crowder_news. 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.
31
+
32
+ ## License
33
+
34
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
35
+
36
+ ## Code of Conduct
37
+
38
+ Everyone interacting in the CrowderNews project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/'Sillhouette'/crowder_news/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "crowder_news"
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
data/bin/crowder_news ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require './lib/crowder_news'
4
+
5
+ CLI.new.initiate
data/bin/setup ADDED
@@ -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,39 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "crowder_news/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "crowder_news"
8
+ spec.version = CrowderNews::VERSION
9
+ spec.authors = ["'Richard Melchior'"]
10
+ spec.email = ["'raustin.melchior@gmail.com'"]
11
+
12
+ spec.summary = %q{News article scraper from www.louderwithcrowder.com}
13
+ spec.description = %q{Scrapes recent and featured articles from www.louderwithcrowder.com}
14
+ spec.homepage = "https://github.com/Sillhouette/crowder_news-cli-app"
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
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against " \
23
+ "public gem pushes."
24
+ end
25
+
26
+ # Specify which files should be added to the gem when it is released.
27
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
28
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
29
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
30
+ end
31
+ spec.bindir = "bin"
32
+ spec.executables = ["crowder_news"]
33
+ spec.require_paths = ["lib"]
34
+
35
+ spec.add_development_dependency "bundler", "~> 1.16"
36
+ spec.add_development_dependency "rake", "~> 10.0"
37
+ spec.add_development_dependency "pry"
38
+ spec.add_dependency "nokogiri"
39
+ end
@@ -0,0 +1,64 @@
1
+ ##
2
+ # => Handles Article object creation
3
+ ##
4
+ class Article
5
+ # => Accessors for article details
6
+ attr_accessor :title, :link, :excerpt, :type, :author, :date, :body, :youtube_links
7
+
8
+ # => Set each of our Class arrays to a blank array
9
+ @@all = []
10
+ @@recents = []
11
+ @@featured = []
12
+
13
+ ##
14
+ # => Creates new Article objects
15
+ ##
16
+ def initialize(article_hash)
17
+ @title = article_hash[:title]
18
+ @link = article_hash[:link]
19
+ @excerpt = article_hash[:excerpt]
20
+ @type = article_hash[:type]
21
+
22
+ if @type.downcase == "recent"
23
+ @@recents << self
24
+ elsif @type.downcase == "featured"
25
+ @@featured << self
26
+ end
27
+ @@all << self;
28
+ end
29
+
30
+ ##
31
+ # => Creates articles from a hash of article information
32
+ ##
33
+ def self.create_from_collection(articles_array)
34
+ articles_array.each { |hash|
35
+ self.new(hash)
36
+ }
37
+ end
38
+
39
+ ##
40
+ # => Adds the additional details to our Article object
41
+ ##
42
+ def add_details(details_hash)
43
+ @author = details_hash[:author]
44
+ @date = details_hash[:date]
45
+ @body = details_hash[:body]
46
+ @youtube_links = details_hash[:youtube_links]
47
+ end
48
+
49
+ # => Getter returns all of our article objects
50
+ def self.all
51
+ @@all;
52
+ end
53
+
54
+ # => Getter returns all of our recent articles
55
+ def self.recents
56
+ @@recents
57
+ end
58
+
59
+ # => Getter returns all of our featured articles
60
+ def self.featured
61
+ @@featured
62
+ end
63
+
64
+ end
@@ -0,0 +1,110 @@
1
+ ##
2
+ # => Handles all interfacing with our user
3
+ ##
4
+ class CLI
5
+ # => Articles array accessor
6
+ attr_accessor :articles
7
+
8
+ # => Intiates the program, scrapes the website and welcomes the user
9
+ def initiate
10
+ Scraper.initiate_scrape
11
+ puts "Welcome to Today on Crowder!"
12
+ list_articles
13
+ end
14
+
15
+ ##
16
+ # => Lists the articles according to the user's preferences
17
+ ##
18
+ def list_articles
19
+ input = nil
20
+ choices = 'Choose one: recent, featured, or both. To exit type "exit".'
21
+ puts choices
22
+ input = gets.strip.downcase
23
+ puts ""
24
+ if input == "recent"
25
+ puts "Recent Articles: "
26
+ @articles = Article.recents
27
+ display_list(@articles)
28
+ menu
29
+ elsif input == "featured"
30
+ puts "Featured Articles: "
31
+ @articles = Article.featured
32
+ display_list(@articles)
33
+ menu
34
+ elsif input == "both"
35
+ puts "All articles: "
36
+ @articles = Article.all
37
+ display_list(@articles)
38
+ menu
39
+ elsif input == "exit"
40
+ goodbye
41
+ else
42
+ list_articles
43
+ end
44
+
45
+ end
46
+
47
+ ##
48
+ # => Displays a list of articles for the user
49
+ ##
50
+ def display_list(articles)
51
+ articles.each.with_index(1) do |article, index|
52
+ puts "#{index}. #{article.title}"
53
+ if(article.excerpt != "")
54
+ puts "\t#{article.excerpt[0...98]}..."
55
+ end
56
+ end
57
+ puts ""
58
+ end
59
+
60
+ ##
61
+ # => Gives the user the options to view articles, switch lists, or exit the program
62
+ ##
63
+ def menu
64
+ input = nil
65
+ puts "Enter the number of the article you want to see, type list to list the articles again or type exit: "
66
+ input = gets.strip.downcase
67
+ if input.to_i > 0 && input.to_i < @articles.length + 1
68
+ article = @articles[input.to_i - 1]
69
+ display_article(article)
70
+ elsif input == "list"
71
+ list_articles
72
+ elsif input == "exit"
73
+ goodbye
74
+ else
75
+ puts "Please make a valid selection."
76
+ menu
77
+ end
78
+ end
79
+
80
+ ##
81
+ # => Displays all of the article information for the user to read
82
+ ##
83
+ def display_article(article)
84
+ input = nil
85
+ puts "\n#{article.title}"
86
+ puts "\nAuthor: #{article.author} on #{article.date}: "
87
+ puts "\n\t#{article.body}"
88
+ if article.youtube_links
89
+ puts "\nYoutube Links:"
90
+ article.youtube_links.each{ |link|
91
+ puts link
92
+ }
93
+ end
94
+ puts 'Press any key to find another article or "exit" to exit.'
95
+ input = gets.strip.downcase
96
+ if input == "exit"
97
+ goodbye
98
+ else
99
+ list_articles
100
+ end
101
+ end
102
+
103
+ ##
104
+ # => Tells the user goodbye and exits program
105
+ ##
106
+ def goodbye
107
+ puts "\nSee you next time!"
108
+ end
109
+
110
+ end
@@ -0,0 +1,75 @@
1
+ ##
2
+ # => Scraper scrapes the articles from the front page of www.louderwithcrowder.com
3
+ # Scrapes the data from each article to be displayed to the user via CLI
4
+ ##
5
+ class Scraper
6
+
7
+ @@url = "https://www.louderwithcrowder.com"
8
+
9
+ ##
10
+ # => This method iniates the scrape from our website
11
+ ##
12
+ def self.initiate_scrape
13
+ Article.create_from_collection(self.scrape_featured)
14
+ Article.create_from_collection(self.scrape_recent)
15
+ Article.all.each {|article|
16
+ details = self.scrape_details(article.link)
17
+ article.add_details(details)
18
+ }
19
+ end
20
+
21
+ ##
22
+ # => Scrapes the featured articles from LwC
23
+ ##
24
+ def self.scrape_featured
25
+ doc = Nokogiri::HTML(open(@@url))
26
+ articles = []
27
+ doc.css("div.lwc-featured").each {|featured_article|
28
+ featured_article.css(".featured-box").each { |box|
29
+ title = box.css("h3.featured-title a").text
30
+ link = box.css("h3.featured-title a").attribute("href").value
31
+ excerpt = box.css("p.lwc-excerpt").text
32
+ type = "Featured"
33
+ articles << {:title => title, :link => link, :excerpt => excerpt, :type => type}
34
+ }
35
+ }
36
+ articles
37
+ end
38
+
39
+ ##
40
+ # => Scrapes the recent articles from LwC
41
+ ##
42
+ def self.scrape_recent
43
+ doc = Nokogiri::HTML(open(@@url))
44
+ articles = []
45
+ doc.css("div.lwc-recent").each {|article|
46
+ article.css(".recent-box").each { |box|
47
+ title = box.css("h3.recent-title a").text
48
+ link = box.css("h3.recent-title a").attribute("href").value
49
+ type = "Recent"
50
+ excerpt = ""
51
+ articles << {:title => title, :link => link, :excerpt => excerpt, :type => type}
52
+ }
53
+ }
54
+ articles
55
+ end
56
+
57
+ ##
58
+ # => Pulls the articles details from each article url so we can complete out Article objects
59
+ ##
60
+ def self.scrape_details(article_url)
61
+ doc = Nokogiri::HTML(open(article_url))
62
+
63
+ article_info = {}
64
+
65
+ article_info[:author] = doc.css("h2 span.lwc-author").text
66
+ article_info[:date] = doc.css("h2 span.lwc-date").text
67
+ article_info[:body] = doc.css("p").text
68
+ article_info[:youtube_links] = []
69
+ doc.css("div.fluid-width-video-wrapper").each { |wrapper|
70
+ article_info[:youtube_links] << wrapper.css("iframe").attribute("src").value
71
+ }
72
+ article_info
73
+ end
74
+
75
+ end
@@ -0,0 +1,3 @@
1
+ module CrowderNews
2
+ VERSION = "0.1.3"
3
+ end
@@ -0,0 +1,8 @@
1
+ require 'nokogiri'
2
+ require 'pry'
3
+ require 'open-uri'
4
+
5
+ require_relative "./crowder_news/version"
6
+ require_relative './crowder_news/cli'
7
+ require_relative './crowder_news/article'
8
+ require_relative './crowder_news/scraper'
data/notes.md ADDED
@@ -0,0 +1,24 @@
1
+ Command line interface for news stories
2
+
3
+ User types news
4
+
5
+ Show a list of news stories
6
+ News story 1
7
+ News story 2
8
+
9
+ Which story would you like to see?
10
+
11
+ Scraping Louderwithcrowder.com
12
+
13
+ Scraping the landing page for each news story
14
+
15
+
16
+ What is an article?
17
+
18
+ an article has a title
19
+ an article has a date
20
+ an article has an author
21
+ an article has a body
22
+ an article can contain images
23
+ an article can contain videos
24
+ an article has a URL
data/spec.md ADDED
@@ -0,0 +1,6 @@
1
+ # Specifications for the CLI Assessment
2
+
3
+ Specs:
4
+ - [x] Have a CLI for interfacing with the application - The CLI is build out of the cli.rb file and controls the entire application
5
+ - [x] Pull data from an external source - The data pulling is done in scraper.rb and pulls the articles from the frontpage of the website and the details from each article page thereafter.
6
+ - [x] Implement both list and detail views - There is an option to list out each of the articles in three different lists, recent, featured, and both. After you choose a list mode you are able to pick an article and get a detailed view of the information in that article.
metadata ADDED
@@ -0,0 +1,120 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: crowder_news
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.3
5
+ platform: ruby
6
+ authors:
7
+ - "'Richard Melchior'"
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-06-13 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
+ - !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
+ - !ruby/object:Gem::Dependency
56
+ name: nokogiri
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: Scrapes recent and featured articles from www.louderwithcrowder.com
70
+ email:
71
+ - "'raustin.melchior@gmail.com'"
72
+ executables:
73
+ - crowder_news
74
+ extensions: []
75
+ extra_rdoc_files: []
76
+ files:
77
+ - ".gitignore"
78
+ - CODE_OF_CONDUCT.md
79
+ - Gemfile
80
+ - Gemfile.lock
81
+ - LICENSE.txt
82
+ - README.md
83
+ - Rakefile
84
+ - bin/console
85
+ - bin/crowder_news
86
+ - bin/setup
87
+ - crowder_news.gemspec
88
+ - lib/crowder_news.rb
89
+ - lib/crowder_news/article.rb
90
+ - lib/crowder_news/cli.rb
91
+ - lib/crowder_news/scraper.rb
92
+ - lib/crowder_news/version.rb
93
+ - notes.md
94
+ - spec.md
95
+ homepage: https://github.com/Sillhouette/crowder_news-cli-app
96
+ licenses:
97
+ - MIT
98
+ metadata:
99
+ allowed_push_host: https://rubygems.org
100
+ post_install_message:
101
+ rdoc_options: []
102
+ require_paths:
103
+ - lib
104
+ required_ruby_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ required_rubygems_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ requirements: []
115
+ rubyforge_project:
116
+ rubygems_version: 2.7.7
117
+ signing_key:
118
+ specification_version: 4
119
+ summary: News article scraper from www.louderwithcrowder.com
120
+ test_files: []