
Security News
CISA’s 2025 SBOM Guidance Adds Hashes, Licenses, Tool Metadata, and Context
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
= event_utils
EventUtils is meant to provide modules and classes to help building services on top of EventMachine without having to cope with some of the mechnics of eventmachine itself.
the first implemented facility is EventUtils::DeferredLoop
it makes possible to perform action on groups of deferrable objects in an intuitive way, and without having to take care of starting/stopping the EventMachine reactor
example:
d1 and d2 are two deferrables and we want to compare them but the comparaison is only feasible when d1 and d2 have both deferred status set.
In this case the code will look like
require 'event_utils' include EventUtils
in_deferred_loop do waiting_for d1, d2 do d1 > d2 end end
Check http://assertbuggy.blogspot.com for further informations and tutorials
== Copyright
Copyright (c) 2009 Paolo Negri. See LICENSE for details.
FAQs
Unknown package
We found that event_utils demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
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.