Project

boltos

0.0
No commit activity in last 3 years
No release in over 3 years
Fast access to the Voltos API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.10.0
 Project Readme

Boltos

A faster interface to Voltos bundle variables.

I'm sure the official interfaces will be faster soon enough, but this is just to keep me happy in the meantime.

Installation

The gem is named boltos - install it, bundle it, use it as a gem dependency.

Usage

# Use an existing bundle
bundle = Boltos::Bundle.new 'secrets'
bundle.set 'SECRET_KEY', 'SECRET_VALUE'
bundle.variables #=> {"SECRET_KEY" => "SECRET_VALUE"}

# Create a new bundle
bundle = Boltos::Bundle.create 'secrets'

# Find or create
bundle = Boltos::Bundle.find_or_create 'secrets'

# Get all bundles
Boltos::Bundle.all

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/limbrup/boltos. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.