
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Customized fork for bundlers gem task helpers.
Automatically detects multiple gemspecs and protect from releasing code not matching git version tag.
Add this line to your Gemfile:
gem 'rake-release'
Simply require in Rakefile:
require 'rake/release'
Check with rake -D
:
rake build
Build rake-release-0.2.1.gem.gem into the pkg directory.
rake install
Build and install rake-release-0.2.1.gem into system gems.
rake install:local
Build and install rake-release-0.2.1.gem into system gems without network access.
rake release[remote]
Create and push tag v0.2.1, build gem and publish to rubygems.org.
> rake -T
rake lib-alpha:build # Build lib-alpha-0.6.0.gem.gem into the pkg directory
rake lib-alpha:install # Build and install lib-alpha-0.6.0.gem into system gems
rake lib-alpha:install:local # Build and install lib-alpha-0.6.0.gem into system gems without network access
rake lib-alpha:release[remote] # Create and push tag v0.6.0, build gem and publish to rubygems.org
rake lib-beta:build # Build lib-beta-0.8.0.gem.gem into the pkg directory
rake lib-beta:install # Build and install lib-beta-0.8.0.gem into system gems
rake lib-beta:install:local # Build and install lib-beta-0.8.0.gem into system gems without network access
rake lib-beta:release[remote] # Create and push tag v0.6.0, build gem and publish to rubygems.org
Enable tag signing by manually loading the task:
require 'rake/release/task'
Rake::Release::Task.new do |spec|
spec.sign_tag = true
end
Or with multiple gems:
require 'rake/release/task'
Rake::Release::Task.load_all do |spec|
spec.sign_tag = true
end
require 'rake/release/task'
Rake::Release::Task.new do |spec|
spec.namespace = 'client'
end
> rake -T
rake client:build # Build rake-release-0.6.0.gem.gem into the pkg directory
rake client:install # Build and install rake-release-0.6.0.gem into system gems
rake client:install:local # Build and install rake-release-0.6.0.gem into system gems without network access
rake client:release[remote] # Create and push tag v0.6.0, build gem and publish to rubygems.org
You can customize the task e.g. with a custom git tag or gem push host:
Rake::Release::Task.load_all do |spec|
spec.version_tag = "gem-v#{spec.version}"
spec.host = 'https://user:pass@gemhost/'
end
MIT
FAQs
Unknown package
We found that rake-release 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
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
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.