news_aggregator 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: 75ae6c5548c27b7085a2da7d4d7a03a947f5d7672cab59835d67c347f06e778a
4
+ data.tar.gz: e8eabadd12de56319dffb50e58371566d9ceae1797d68c8119cc983920db7922
5
+ SHA512:
6
+ metadata.gz: 228e68c92becb26d8b04cd51c9f962d024117fdebbf9999f3974a8b6e486a5405eead7060dabea5b4a5c09562257c1b45a721b5efcca2a6eb4490f6c30a7dba1
7
+ data.tar.gz: 5ef7536c062d1cd0f035c60f534267746395472b9e8287a9da57b155c83800a5955d8083540b04a489fb782824cd131ddaccda6f17a9d30eeadf199413a43c51
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,16 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+ SuggestExtensions:
4
+ rubocop-rspec: true
5
+ rubocop-rake: true
6
+
7
+ Style/StringLiterals:
8
+ Enabled: true
9
+ EnforcedStyle: double_quotes
10
+
11
+ Style/StringLiteralsInInterpolation:
12
+ Enabled: true
13
+ EnforcedStyle: double_quotes
14
+
15
+ Layout/LineLength:
16
+ Max: 120
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2022-09-22
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 benowmbi@yahoo.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,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in news_aggregator.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "rubocop", "~> 1.21"
data/Gemfile.lock ADDED
@@ -0,0 +1,92 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ news_aggregator (0.1.0)
5
+ faraday (~> 1.10.2)
6
+ faraday_middleware (~> 1.2)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ ast (2.4.2)
12
+ coderay (1.1.3)
13
+ diff-lcs (1.5.0)
14
+ faraday (1.10.2)
15
+ faraday-em_http (~> 1.0)
16
+ faraday-em_synchrony (~> 1.0)
17
+ faraday-excon (~> 1.1)
18
+ faraday-httpclient (~> 1.0)
19
+ faraday-multipart (~> 1.0)
20
+ faraday-net_http (~> 1.0)
21
+ faraday-net_http_persistent (~> 1.0)
22
+ faraday-patron (~> 1.0)
23
+ faraday-rack (~> 1.0)
24
+ faraday-retry (~> 1.0)
25
+ ruby2_keywords (>= 0.0.4)
26
+ faraday-em_http (1.0.0)
27
+ faraday-em_synchrony (1.0.0)
28
+ faraday-excon (1.1.0)
29
+ faraday-httpclient (1.0.1)
30
+ faraday-multipart (1.0.4)
31
+ multipart-post (~> 2)
32
+ faraday-net_http (1.0.1)
33
+ faraday-net_http_persistent (1.2.0)
34
+ faraday-patron (1.0.0)
35
+ faraday-rack (1.0.0)
36
+ faraday-retry (1.0.3)
37
+ faraday_middleware (1.2.0)
38
+ faraday (~> 1.0)
39
+ json (2.6.2)
40
+ method_source (1.0.0)
41
+ multipart-post (2.2.3)
42
+ parallel (1.22.1)
43
+ parser (3.1.2.1)
44
+ ast (~> 2.4.1)
45
+ pry (0.14.1)
46
+ coderay (~> 1.1)
47
+ method_source (~> 1.0)
48
+ rainbow (3.1.1)
49
+ rake (13.0.6)
50
+ regexp_parser (2.5.0)
51
+ rexml (3.2.5)
52
+ rspec (3.11.0)
53
+ rspec-core (~> 3.11.0)
54
+ rspec-expectations (~> 3.11.0)
55
+ rspec-mocks (~> 3.11.0)
56
+ rspec-core (3.11.0)
57
+ rspec-support (~> 3.11.0)
58
+ rspec-expectations (3.11.1)
59
+ diff-lcs (>= 1.2.0, < 2.0)
60
+ rspec-support (~> 3.11.0)
61
+ rspec-mocks (3.11.1)
62
+ diff-lcs (>= 1.2.0, < 2.0)
63
+ rspec-support (~> 3.11.0)
64
+ rspec-support (3.11.1)
65
+ rubocop (1.36.0)
66
+ json (~> 2.3)
67
+ parallel (~> 1.10)
68
+ parser (>= 3.1.2.1)
69
+ rainbow (>= 2.2.2, < 4.0)
70
+ regexp_parser (>= 1.8, < 3.0)
71
+ rexml (>= 3.2.5, < 4.0)
72
+ rubocop-ast (>= 1.20.1, < 2.0)
73
+ ruby-progressbar (~> 1.7)
74
+ unicode-display_width (>= 1.4.0, < 3.0)
75
+ rubocop-ast (1.21.0)
76
+ parser (>= 3.1.1.0)
77
+ ruby-progressbar (1.11.0)
78
+ ruby2_keywords (0.0.5)
79
+ unicode-display_width (2.3.0)
80
+
81
+ PLATFORMS
82
+ x86_64-darwin-19
83
+
84
+ DEPENDENCIES
85
+ news_aggregator!
86
+ pry
87
+ rake (~> 13.0)
88
+ rspec (~> 3.0)
89
+ rubocop (~> 1.21)
90
+
91
+ BUNDLED WITH
92
+ 2.3.14
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Enow Mbi
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,62 @@
1
+ [![Ruby Style Guide](https://img.shields.io/badge/code_style-rubocop-brightgreen.svg)](https://github.com/rubocop/rubocop)
2
+ [![Ruby Style Guide](https://img.shields.io/badge/code_style-community-brightgreen.svg)](https://rubystyle.guide)
3
+ [![Ruby on Rails CI](https://github.com/enowmbi/news_aggregator_ruby/actions/workflows/ruby.yml/badge.svg)](https://github.com/enowmbi/news_aggregator_ruby/actions/workflows/ruby.yml)
4
+
5
+ # NewsAggregator
6
+ Ruby client library for accessing News API.
7
+
8
+ ## Installation
9
+
10
+ Install the gem and add to the application's Gemfile by executing:
11
+
12
+ $ bundle add news_aggregator
13
+
14
+ If bundler is not being used to manage dependencies, install the gem by executing:
15
+
16
+ $ gem install news_aggregator
17
+
18
+ ## Usage
19
+
20
+ ### Initilisation
21
+
22
+ ```ruby
23
+ require 'news_aggregator'
24
+
25
+ n = NewsAggregator::News.new("api_key")
26
+ ```
27
+
28
+ ### Sources
29
+
30
+ ```ruby
31
+ n.sources(country: 'us', language: 'en')
32
+ ```
33
+
34
+ ### Everything
35
+
36
+ ```ruby
37
+ n.everything(q: "apple", from: "2018-01-05&to=2018-01-05", sortBy: "popularity")
38
+ ```
39
+
40
+ ### Top Headlines
41
+
42
+ ```ruby
43
+ n.top_headlines(sources: "bbc-news")
44
+ ```
45
+
46
+ ## Development
47
+
48
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
49
+
50
+ 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).
51
+
52
+ ## Contributing
53
+
54
+ Bug reports and pull requests are welcome on GitHub at https://github.com/enowmbi/news_aggregator. 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]/news_aggregator/blob/master/CODE_OF_CONDUCT.md).
55
+
56
+ ## License
57
+
58
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
59
+
60
+ ## Code of Conduct
61
+
62
+ Everyone interacting in the NewsAggregator project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/news_aggregator/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ module NewsAggregator
4
+ # /v2/everything
5
+ class Everything
6
+ attr_accessor :id, :name, :author, :title, :description, :url, :url_to_image, :published_at, :content
7
+
8
+ def initialize(source, author, title, description, url, url_to_image, published_at, content)
9
+ @id = source["id"]
10
+ @name = source["name"]
11
+ @author = author
12
+ @title = title
13
+ @description = description
14
+ @url = url
15
+ @url_to_image = url_to_image
16
+ @published_at = published_at
17
+ @content = content
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ module NewsAggregator
4
+ # UnauthorizedException
5
+ class UnauthorizedException < StandardError
6
+ def initialize(json)
7
+ puts json["message"] || super
8
+ end
9
+ end
10
+
11
+ # BadRequestException
12
+ class BadRequestException < StandardError
13
+ def initialize(json)
14
+ puts json["message"] || super
15
+ end
16
+ end
17
+
18
+ # TooManyRequestException
19
+ class TooManyRequestsException < StandardError
20
+ def initialize(json)
21
+ puts json["message"] || super
22
+ end
23
+ end
24
+
25
+ # ServerException
26
+ class ServerException < StandardError
27
+ def initialize(json)
28
+ puts json["message"] || super
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,90 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "faraday"
4
+ require "faraday_middleware"
5
+ module NewsAggregator
6
+ # Locate articles and breaking news headlines from news sources and blogs across the web with newsapi.org
7
+ class News
8
+ BASE_URL = "https://newsapi.org/v2"
9
+ attr_reader :api_key, :adapter
10
+
11
+ def initialize(api_key:, adapter: Faraday.default_adapter)
12
+ @api_key = api_key
13
+ @adapter = adapter
14
+ end
15
+
16
+ def connection
17
+ @connection ||= Faraday.new do |conn|
18
+ conn.url_prefix = BASE_URL
19
+ conn.request :json
20
+ conn.response :json, content_type: "application/json"
21
+ conn.adapter adapter
22
+ end
23
+ end
24
+
25
+ def top_headlines(**args)
26
+ endpoint = "top-headlines"
27
+ _get_everything(endpoint, **args)
28
+ end
29
+
30
+ def everything(**args)
31
+ endpoint = "everything"
32
+ _get_everything(endpoint, **args)
33
+ end
34
+
35
+ def sources(**args)
36
+ endpoint = "sources"
37
+ request = _make_request(endpoint, **args)
38
+ # status = request["status"]
39
+ sources = request["sources"]
40
+ data = []
41
+ sources.each do |v|
42
+ data.push(
43
+ Source.new(
44
+ v["id"], v["name"], v["description"],
45
+ v["url"], v["category"], v["language"],
46
+ v["country"]
47
+ )
48
+ )
49
+ end
50
+ data
51
+ end
52
+
53
+ private
54
+
55
+ def _make_request(endpoint, **query_params)
56
+ response = connection.get(endpoint, query_params, { authorization: "bearer #{api_key}" })
57
+ case response.status
58
+ when "200"
59
+ return response.body
60
+ when "401"
61
+ raise UnauthorizedException, response.body
62
+ when "400"
63
+ raise BadRequestException, response.body
64
+ when "429" || "426"
65
+ raise TooManyRequestsException, response.body
66
+ when "500"
67
+ raise ServerException, response.body
68
+ end
69
+ response.body
70
+ end
71
+
72
+ def _get_everything(endpoint, **args)
73
+ request = _make_request(endpoint, **args)
74
+ # status = request['status']
75
+ # totalResults = request['totalResults']
76
+ articles = request["articles"]
77
+ data = []
78
+ articles.each do |a|
79
+ data.push(
80
+ Everything.new(
81
+ a["source"], a["author"], a["title"],
82
+ a["description"], a["content"], a["url"],
83
+ a["urlToImage"], a["publishedAt"]
84
+ )
85
+ )
86
+ end
87
+ data
88
+ end
89
+ end
90
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module NewsAggregator
4
+ # source class
5
+ class Source
6
+ attr_accessor :id, :name, :description, :url, :category, :language, :country
7
+
8
+ def initialize(id, name, description, url, category, language, country)
9
+ @id = id
10
+ @name = name
11
+ @description = description
12
+ @url = url
13
+ @category = category
14
+ @language = language
15
+ @country = country
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module NewsAggregator
4
+ VERSION = "0.1.1"
5
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Loads dependencies using lazy loading
4
+ module NewsAggregator
5
+ autoload(:News, "news_aggregator/news")
6
+ autoload(:UnauthorizedException, "news_aggregator/exceptions")
7
+ autoload(:BadRequestException, "news_aggregator/exceptions")
8
+ autoload(:TooManyRequestsException, "news_aggregator/exceptions")
9
+ autoload(:ServerException, "news_aggregator/exceptions")
10
+ autoload(:Source, "news_aggregator/source")
11
+ autoload(:Everything, "news_aggregator/everything")
12
+ end
Binary file
@@ -0,0 +1,4 @@
1
+ module NewsAggregator
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,106 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: news_aggregator
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Enow Mbi
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-11-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: faraday
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 1.10.2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 1.10.2
27
+ - !ruby/object:Gem::Dependency
28
+ name: faraday_middleware
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.2'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.2'
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: Get top news headlines from newsapi.org using Ruby
56
+ email:
57
+ - benowmbi@yahoo.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".rspec"
63
+ - ".rubocop.yml"
64
+ - CHANGELOG.md
65
+ - CODE_OF_CONDUCT.md
66
+ - Gemfile
67
+ - Gemfile.lock
68
+ - LICENSE.txt
69
+ - README.md
70
+ - Rakefile
71
+ - lib/news_aggregator.rb
72
+ - lib/news_aggregator/everything.rb
73
+ - lib/news_aggregator/exceptions.rb
74
+ - lib/news_aggregator/news.rb
75
+ - lib/news_aggregator/source.rb
76
+ - lib/news_aggregator/version.rb
77
+ - news_aggregator-0.1.0.gem
78
+ - sig/news_aggregator.rbs
79
+ homepage: https://github.com/enowmbi/news_aggregator_ruby
80
+ licenses:
81
+ - MIT
82
+ metadata:
83
+ allowed_push_host: https://rubygems.org
84
+ homepage_uri: https://github.com/enowmbi/news_aggregator_ruby
85
+ source_code_uri: https://github.com/enowmbi/news_aggregator_ruby
86
+ changelog_uri: https://github.com/enowmbi/news_aggregator_ruby/CHANGELOG.md
87
+ post_install_message:
88
+ rdoc_options: []
89
+ require_paths:
90
+ - lib
91
+ required_ruby_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: 2.6.0
96
+ required_rubygems_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ requirements: []
102
+ rubygems_version: 3.3.14
103
+ signing_key:
104
+ specification_version: 4
105
+ summary: Newsapi SDK for ruby
106
+ test_files: []