
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Prevent ActiveRecord attributes for not null
columns with default values from being set to nil
.
Why is this necessary? Take this example:
class OrderItem < ApplicationRecord
# Has column: total numeric(11,2) not null default 0
# Validation etc...
end
class Order < ApplicationRecord
# Has columns: total, subtotal, and taxes are all numeric(11,2) not null default 0
# Validation etc...
has_many :order_items
def total
order_items.sum(&:total) + subtotal + taxes
end
end
The columns have a default value of 0
, but the attributes can still be set to nil
.
This can make for code that is far from bulletproof:
o = Order.new
o.total # 0
o.taxes = nil
o.total # 💥 TypeError: nil can't be coerced into Fixnum
To fix you can do something like:
class OrderItem < ApplicationRecord
def total
super || 0
end
end
class Order < ApplicationRecord
def total
order_items.sum(&:total).to_f + subtotal.to_f + taxes.to_f
end
end
But what about the other contexts in which these can be called or the other attributes you have? This can get tedious.
With Keep Defaults:
class ApplicationRecord < ActiveRecord::Base
include KeepDefaults
end
o = Order.new
o.total # 0
o.taxes = nil
o.total # 0
o.taxes # 0
Now if an attribute is set to nil
it will retain its default value instead.
Add this line to your application's Gemfile
:
gem "keep_defaults"
Or
gem install keep_defaults
To use everywhere add to ApplicationRecord
:
class ApplicationRecord < ActiveRecord::Base
include KeepDefaults
end
To use for a specific class add it directly to that class:
class Order < ApplicationRecord
include KeepDefaults
end
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that keep_defaults 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.