
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
This is a simple wrapper over the kqueue BSD event notification interface (supported on FreeBSD, NetBSD, OpenBSD, and Darwin). It uses the FFI gem to avoid having to compile a C extension.
API documentation is available on rdoc.info.
The API is similar to the kqueue C API, but with a more Rubyish feel. First, create a queue:
queue = KQueue::Queue.new
Then, tell it to watch the events you're interested in:
queue.watch_file("path/to/foo.txt", :write) {puts "foo.txt was modified!"}
queue.watch_process(Process.pid, :fork, :exec) do |event|
puts "This process has #{event.flags.map {|f| f.to_s + "ed"}.join(" and ")}"
end
KQueue can monitor for all sorts of events.
For a full list, see the watch_*
methods on {Queue}.
Finally, run the queue:
queue.run
This will loop infinitely, calling the appropriate callbacks when the events are fired. If you don't want infinite looping, you can also block until there are available events, process them all at once, and then continue on your merry way:
queue.process
They all go in the github issue tracker, no exception. (Well, the exception is when you have a patch, in that case, it goes into the github pull requests thingie.)
If you get a weird compilation error, it's most certainely a problem in ffi/ffi but do report it anyway so I can get a look at it.
Do get me the result of uname -a
somewhere so that we know what OS and what
version we're talking about.
Also, please, try to answer the following questions :
Please also post code to replicate the bug. Ideally a failing test would be perfect, (one day there will be tests,) but even a simple script demonstrating the error would suffice. Please don't send me an entire application, unless the bug is in the interaction between rb-kqueue and a particular framework.
Make sure to specify which version of rb-kqueue you are using.
Document any change in behaviour. Make sure the README and any other relevant documentation are kept up-to-date.
Consider our release cycle. We try to follow semver. Randomly breaking public APIs is not an option.
Create topic branches. Don't ask us to pull from your master branch.
One pull request per feature. If you want to do more than one thing, send multiple pull requests.
Send coherent history. Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please try to squash them before sending them to us. I quite like tpope's general guidelines, they're not absolute rules, but do try not to put all your commit message on the first line.
And if you feel like it, Add tests!, rspecs would be nice :-)
FAQs
Unknown package
We found that rb-kqueue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.