{"id":19755536,"url":"https://github.com/seibii/middleman-rss_items","last_synced_at":"2026-06-04T20:31:26.575Z","repository":{"id":39486797,"uuid":"238730243","full_name":"seibii/middleman-rss_items","owner":"seibii","description":":m: Middleman plugin to create RSS feed","archived":false,"fork":false,"pushed_at":"2023-03-16T10:01:03.000Z","size":281,"stargazers_count":1,"open_issues_count":21,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-28T09:09:26.556Z","etag":null,"topics":["feed","middleman","middleman-extension","rss","static-site-generator"],"latest_commit_sha":null,"homepage":null,"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/seibii.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":"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,"publiccode":null,"codemeta":null}},"created_at":"2020-02-06T16:15:00.000Z","updated_at":"2023-04-03T08:05:58.000Z","dependencies_parsed_at":"2024-11-12T03:12:07.130Z","dependency_job_id":"2f92e992-76cc-49c4-ba46-06960e8bbe01","html_url":"https://github.com/seibii/middleman-rss_items","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/seibii/middleman-rss_items","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seibii%2Fmiddleman-rss_items","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seibii%2Fmiddleman-rss_items/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seibii%2Fmiddleman-rss_items/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seibii%2Fmiddleman-rss_items/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/seibii","download_url":"https://codeload.github.com/seibii/middleman-rss_items/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seibii%2Fmiddleman-rss_items/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33917202,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-04T02:00:06.755Z","response_time":64,"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":["feed","middleman","middleman-extension","rss","static-site-generator"],"created_at":"2024-11-12T03:12:02.572Z","updated_at":"2026-06-04T20:31:26.550Z","avatar_url":"https://github.com/seibii.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# middleman-rss_items\n[![Gem Version](https://badge.fury.io/rb/middleman-rss_items.svg)](https://badge.fury.io/rb/middleman-rss_items)\n[![Code Climate](https://codeclimate.com/github/seibii/middleman-rss_items/badges/gpa.svg)](https://codeclimate.com/github/seibii/middleman-rss_items)\n[![Libraries.io dependency status for GitHub repo](https://img.shields.io/librariesio/github/seibii/middleman-rss_items.svg)](https://libraries.io/github/seibii/middleman-rss_items)\n![](http://ruby-gem-downloads-badge.herokuapp.com/middleman-rss_items?type=total)\n![GitHub](https://img.shields.io/github/license/seibii/middleman-rss_items.svg)\n\n`middleman-rss_items` provide a method to get RSS resources and create RSS feed like html.\n\n## Installation\n\nAdd middleman-rss_item to your Gemfile:\n\n```ruby\ngem \"middleman-rss_item\"\n```\n\n## Configuration\n\nIn `config.rb`\n\n```ruby\nactivate :rss_item do |rss_item|\n  rss.rss_resources = [ # Websites you want to display\n    {\n      name: :blog, # name to be accessed by template\n      url: 'https://blog.seibii.co.jp/rss/' # RSS url\n    }\n  ]\nend\n```\n\n## Usage\n\nIn your templates\n\n```erb\n\u003c% rss_items[:blog].each do |rss_item| %\u003e\n  \u003c%= rss_item.title %\u003e\n  br\n  \u003c%= rss_item.summary %\u003e\n  br\n  \u003c%= rss_item.url %\u003e\n  br\n  \u003c%= rss_item.published %\u003e\n  br\n  \u003c%= rss_item.image %\u003e\n\u003c% end %\u003e\n```\n\nThis gem using [feedjira](https://github.com/feedjira/feedjira) as parser and the `rss_item` is object of that.\nSo, please checkout [feedjira](https://github.com/feedjira/feedjira) about the objects.\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/seibii/middleman-rss_items. 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.\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n\n## Code of Conduct\n\nEveryone interacting in the middleman-rss_items project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/seibii/middleman-rss_items/blob/master/CODE_OF_CONDUCT.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseibii%2Fmiddleman-rss_items","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseibii%2Fmiddleman-rss_items","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseibii%2Fmiddleman-rss_items/lists"}