Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
A small Ruby utility class to aid in the storage, parsing, and comparison of SemVer-style Version strings.
See the SemVer site for more details.
This library exposes a single class – Semantic::Version
. Simply pass in a valid SemVer string to
the initializer.
require 'semantic'
version = Semantic::Version.new '1.6.5'
version.major # => 1
version.minor # => 6
version.patch # => 5
newer_version = Semantic::Version.new '1.7.0'
version > newer_version # => false
newer_version <=> version # => 1
complex_version = Semantic::Version.new '3.7.9-pre.1+revision.15723'
complex_version.pre # => "pre.1"
complex_version.build # => "revision.15623"
# semantic supports Pessimistic Operator
version.satisfies? '~> 1.5' # => true
version.satisfies? '~> 1.6.0' # => true
# incrementing version numbers
version = Semantic::Version.new('0.1.0')
new_version = version.increment!(:major) # 1.1.0
new_version = version.increment!(:minor) # 0.2.0
new_version = version.increment!(:patch) # 0.1.1
new_version = verstion.major! # 1.1.0
new_version = verstion.minor! # 0.2.0
new_version = verstion.patch! # 0.1.1
# (note: increment! & friends return a copy and leave the original unchanged)
There is also a set of core extensions as an optional require:
require 'semantic'
require 'semantic/core_ext'
"1.8.7-pre.123".to_version
Copyright (c) 2012 Josh Lindsey. See LICENSE for details.
FAQs
Unknown package
We found that semantic 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.