
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
middleman-rss_items
provide a method to get RSS resources and create RSS feed like html.
Add middleman-rss_item to your Gemfile:
gem "middleman-rss_item"
In config.rb
activate :rss_item do |rss_item|
rss.rss_resources = [ # Websites you want to display
{
name: :blog, # name to be accessed by template
url: 'https://blog.seibii.co.jp/rss/' # RSS url
}
]
end
In your templates
<% rss_items[:blog].each do |rss_item| %>
<%= rss_item.title %>
br
<%= rss_item.summary %>
br
<%= rss_item.url %>
br
<%= rss_item.published %>
br
<%= rss_item.image %>
<% end %>
This gem using feedjira as parser and the rss_item
is object of that.
So, please checkout feedjira about the objects.
Bug 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 code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the middleman-rss_items project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
FAQs
Unknown package
We found that middleman-rss_items demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.
Research
/Security News
A malicious Go module posing as an SSH brute forcer exfiltrates stolen credentials to a Telegram bot controlled by a Russian-speaking threat actor.