{"id":16069096,"url":"https://github.com/talaatmagdyx/rss_feed_plus","last_synced_at":"2025-08-17T20:09:53.167Z","repository":{"id":232127158,"uuid":"772786147","full_name":"talaatmagdyx/rss_feed_plus","owner":"talaatmagdyx","description":"A simple RSS parser gem for Ruby","archived":false,"fork":false,"pushed_at":"2024-04-15T18:17:46.000Z","size":84,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-28T13:35:08.011Z","etag":null,"topics":["rss","rss-feed","rss-parser","rss-reader","ruby","rubygems"],"latest_commit_sha":null,"homepage":"https://rubygems.org/gems/rss_feed_plus","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/talaatmagdyx.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-03-15T22:36:13.000Z","updated_at":"2024-04-08T04:24:25.000Z","dependencies_parsed_at":"2024-04-08T04:49:27.597Z","dependency_job_id":"e555c56e-960d-4f11-85bd-afed849a4463","html_url":"https://github.com/talaatmagdyx/rss_feed_plus","commit_stats":null,"previous_names":["talaatmagdyx/rss_feed_plus"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/talaatmagdyx/rss_feed_plus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talaatmagdyx%2Frss_feed_plus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talaatmagdyx%2Frss_feed_plus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talaatmagdyx%2Frss_feed_plus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talaatmagdyx%2Frss_feed_plus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/talaatmagdyx","download_url":"https://codeload.github.com/talaatmagdyx/rss_feed_plus/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talaatmagdyx%2Frss_feed_plus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270843583,"owners_count":24655420,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["rss","rss-feed","rss-parser","rss-reader","ruby","rubygems"],"created_at":"2024-10-09T06:41:34.105Z","updated_at":"2025-08-17T20:09:53.144Z","avatar_url":"https://github.com/talaatmagdyx.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rss_feed_plus\n\n## Introduction\n\n**rss_feed_plus** is your go-to Ruby gem for effortlessly fetching and parsing RSS feeds. Whether you're building a news aggregator, content management system, or simply want to integrate RSS feeds into your application, **rss_feed_plus** simplifies the process, allowing you to easily retrieve and process RSS feed data from various sources.\n\n## Features\n\n- **Effortless Parsing**: Fetch and parse RSS feeds with ease.\n- **Customization: Tailor** parsing to fit your needs with customizable XML and URI parsers and timeout duration.\n- **Seamless Integration**: Integrate with Ruby applications smoothly.\n\n## Installation\n\nGetting started with **rss_feed_plus** is quick and easy. Simply add the gem to your application's Gemfile:\n\n```ruby\ngem 'rss_feed_plus'\n```\n\nThen, install the gem by running:\n\n```bash\nbundle install\n```\n\nAlternatively, you can install the gem directly using RubyGems:\n\n```bash\ngem install rss_feed_plus\n```\n\n## Usage\n\nHere's a basic example of how to use **rss_feed_plus** to fetch and parse RSS feeds:\n\n```ruby\nrequire 'rss_feed'\nrequire 'nokogiri'\n\n# Define your custom options\nfeed_urls = 'https://www.ruby-lang.org/en/feeds/news.rss'\nxml_parser = Nokogiri\nuri_parser = URI\ntimeout = 10\n\n# Initialize the Parser class with custom options\nparser = RssFeed::Parser.new(feed_urls, xml_parser: xml_parser, uri_parser: uri_parser, timeout: timeout)\n# or \nparser = RssFeed::Parser.new(feed_urls)\n# Parse the RSS feeds\nparsed_data = parser.parse_as_object \n\n# OR  Parse the RSS feed as a JSON\nparsed_data = parser.parse\n\n# Process the parsed data\nputs parsed_data.inspect\n```\n## Example \n- [rss-cli-example](https://github.com/talaatmagdyx/rss-cli-example)\n  \n## Customization\n\n**rss_feed_plus** allows you to tailor the parsing process to fit your needs. Customize the XML parser, URI parser, and timeout duration according to your requirements.\n\n## Contributing\n\nContributions to **rss_feed_plus** are welcome! If you encounter any issues, have feature requests, or would like to contribute enhancements, please feel free to open an issue or submit a pull request on [GitHub](https://github.com/talaatmagdyx/rss_feed_plus).\n\nBefore contributing, please review the [Contributing Guidelines](https://github.com/talaatmagdyx/rss_feed_plus/blob/master/.github/CONTRIBUTING.md) and adhere to the [Code of Conduct](https://github.com/talaatmagdyx/rss_feed_plus/blob/master/.github/CODE_OF_CONDUCT.md).\n\n## Reporting Bugs / Feature Requests\n\nIf you encounter any bugs or have suggestions for new features, please [open an issue on GitHub](https://github.com/talaatmagdyx/rss_feed_plus/issues). Your feedback is valuable and helps improve the quality of the gem.\n\n## License\n\n**rss_feed_plus** is released under the [MIT License](https://opensource.org/licenses/MIT). You are free to use, modify, and distribute the gem according to the terms of the license.\n\n## Code of Conduct\n\nPlease review and adhere to the [Code of Conduct](https://github.com/talaatmagdyx/rss_feed_plus/blob/master/.github/CODE_OF_CONDUCT.md) when interacting with the **rss_feed_plus** project. We strive to maintain a welcoming and inclusive community for all contributors and users.\n\n---\n\nExperience the simplicity of RSS feed integration with **rss_feed_plus**. Happy coding!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalaatmagdyx%2Frss_feed_plus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftalaatmagdyx%2Frss_feed_plus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalaatmagdyx%2Frss_feed_plus/lists"}