Onboardbase Ruby SDK

Install

gem install onboardbase

Requirements

Ensure that you have onboardbase.yaml at the root of your project. With the api_key and passcode field being set.

api_key: ********************** # Generate from onboardbase
passcode: ******** # Generate from onboardbase
setup:
  project: **** # onboardbase project
  environment: **** # Onboardbase environment
secrets:
  local:
    PORT: 3000

Basic Usage

require "onboardbase"

Onboardbase.config do |c|
  c.loadSecrets
end

p ENV["SECRET_ONBOARDBASE"]