
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
A cross-platform Ruby interface for getting operating system information. The name comes from the Unix 'uname' command, but this library works on MS Windows as well.
ffi 1.0 or later
gem install sys-uname
gem cert --add <(curl -Ls https://raw.githubusercontent.com/djberg96/sys-uname/main/certs/djberg96_pub.pem)
require 'sys/uname' # require 'sys-uname' works, too
# You now have Sys::Uname and Sys::Platform classes available.
# Get full information about your system
p Sys::Uname.uname
# Check individual platform details about your system
p Sys::Platform.linux? # => true
p Sys::Platform::ARCH # => :x86_64
As of version 1.4.0 most methods are memoized via the memoist gem since these values are unlikely to change during without a restart/reboot. As per the memoist documentation, you can force a cache flush if desired to refresh the values.
https://github.com/matthewrudy/memoist
Users on BSD platforms get the extra Uname.model
method.
HP-UX users get the extra Uname.id_number
method. This is actually a
String, not a Fixnum, because that's how it's defined in the utsname
struct.
The C version for Windows has been completely scrapped in favor of an OLE
plus WMI approach. It is pure Ruby. Please see the MSDN documentation for
the Win32_OperatingSystem
class for a complete list of what each of the
UnameStruct members mean.
This was added both as a nicer way to check simple information about your system, and as a replacement for the old 'Platform' gem which is no longer maintained.
I may dump the "Uname" portion of this library, and rename the project to just sys-platform.
For more details, see the 'uname.rdoc' file under the 'doc' directory.
FAQs
Unknown package
We found that sys-uname demonstrated a healthy version release cadence and project activity because the last version was released less than 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.