
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.
Reference: https://porkbun.com/api/json/v3/documentation
This is currently only a partial implementation to suit my own needs. If you need a specific call to be implemented, let me know, or submit a PR
gem install porkbun
ENV['PORKBUN_API_KEY'] = 'YOUR_API_KEY'
ENV['PORKBUN_SECRET_API_KEY'] = 'YOUR_SECRET_API_KEY'
record = Porkbun::DNS.create(name: 'test',
type: 'A',
content: '1.1.1.1',
ttl: 300
)
Porkbun.ping
Make sure your keys are good.
Porkbun::DNS.retrieve(domain, id)
Retrive all or specific record for a domain
Porkbun::DNS.create(options)
Create record for a domain
options:
name
- name of record. example www
type
- record type. example: CNAMEcontent
- content of record. example '1.1.1.1',ttl
- time to live. example: 600. porkbun seems to have this as a minimumprio
- record priority. mainly for MX records. example 10.returns instance of DNS which can be used to delete
The gem also comes with a CLI
$ porkbun
Commands:
porkbun delete_all <domain> # deletes all records for a domain. this is destructive. use with caution
porkbun dyndns <hostname.domain> [<ip>] # Update a dynamic dns record. example: porkbun dyndns home.example.com
porkbun help [COMMAND] # Describe available commands or one specific command
porkbun import <file> # Import BIND zone file
porkbun list # List all domains
porkbun retrieve <domain> [<id>] # List all records for a domain
be sure to set the environmental variables for it to work
export PORKBUN_API_KEY = YOUR_API_KEY export PORKBUN_SECRET_API_KEY = YOUR_SECRET_API_KEY
After checking out the repo, run bin/setup
to install dependencies. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and the created tag, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/danielb2/porkbun-ruby.
FAQs
Unknown package
We found that porkbun demonstrated a healthy version release cadence and project activity because the last version was released less than 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.