
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.
$ gem install parka
Create a projectname.gemspec
file in the root of your gem like this:
require "rubygems"
require "parka/specification"
Parka::Specification.new do |gem|
gem.name = "somegem"
gem.version = Somegem::VERSION
gem.summary = "A sample gem"
gem.homepage = "http://example.org"
end
Create a Gemfile
to declare the dependencies of your gem:
source "http://rubygems.org"
gem "rest-client"
group :development do
gem "parka"
end
group :test do
gem "rake"
gem "rcov"
gem "rspec"
end
Gems in the development
and test
groups will become development
dependencies of your gem.
The gem can be built by using gem build projectname.gemspec
Build a .gem file.
$ parka build
Building somegem-0.1.gem
Successfully built RubyGem
Name: somegem
Version: 0.1
File: somegem-0.1.gem
Build a .gem file and install it locally.
$ parka install
Building somegem-0.1.gem
Successfully built RubyGem
Name: somegem
Version: 0.1
File: somegem-0.1.gem
Successfully installed somegem-0.1.gem
Build a .gem file and push it to Github and RubyGems.org. Will create the GitHub repo if necessary.
$ parka push
Building somegem-0.1.gem
Successfully built RubyGem
Name: somegem
Version: 0.1
File: somegem-0.1.gem
Delta compression using up to 8 threads.
Compressing objects: 100% (8/8), done.
Writing objects: 100% (9/9), 1.26 KiB, done.
Total 9 (delta 3), reused 0 (delta 0)
To git@github.com:ddollar/somegem.git
edffa40..249581c master -> master
* [new tag] v0.1 -> v0.1
Pushing gem to RubyGems.org...
Successfully registered gem: somegem (0.1)
FAQs
Unknown package
We found that parka 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.