
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.
Allow your Ruby app to easily submit server-side messages and events to LessNeglect.
In your Gemfile:
gem 'lessneglect'
person = LessNeglectApi::Person.new({
:name => "Christopher Gooley",
:email => "gooley@foliohd.com",
:external_identifer => "gooley",
:properties => {
:account_level => "Pro",
:is_paying => True,
:created_at => 1347060566
}
})
event = LessNeglectApi::ActionEvent.new({
:name => "upgraded"
}.merge(extras))
api = LessNeglectApi::Client.new({
:code => "abcdefg",
:secret => "1234asdfasdf1234"
})
api.create_action_event(person, event)
We suggest you create a simple helper class such as /lib/neglect.rb to convert your User model into a LessNeglect Person and submit the event.
Here's a sample gist of what the helper could look like: https://gist.github.com/3738364
then you can make one-line event logs:
Neglect.log_event(@current_user, "uploaded-media")
Copyright (c) 2011-2012 Christopher Gooley, Less Neglect. See LICENSE.txt for further details.
FAQs
Unknown package
We found that lessneglect 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.