onboardbase 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b06da9457180637a621c7bb90cea5717e2290d23f42d64241e7632fd9e98a32b
4
- data.tar.gz: 964d051e732645c0176ade32486eeb3bf53ef81b472c0933b721822652ec7504
3
+ metadata.gz: 9624a8782aa0265907eb347876f462aefee72851af8ae198965716efb1e817c0
4
+ data.tar.gz: 4abdaac017e28a851e51162c71273568be59a966f0c7634393621d3c3946ffd7
5
5
  SHA512:
6
- metadata.gz: ccf1384fdd1a642a950347f3545d2cb757b0ef9d0b7d8102788b421febe3d9c25eaf242af1a710e04223789e28de690d1d00f319b89e152a823e1898ccc0c5a1
7
- data.tar.gz: 1338c5e937270ad6dd67af4d928fe8f35958397fb5d11cfd59570f73486b1b91ee405542440d7772bcad791533049549e45609962a37eba6f33d5acac5a2f9aa
6
+ metadata.gz: dc3a2d0a5d17cc84898bd51998afd79c534a578df124c295a9980e7858db6217d3fde3ba210ba1cdd9cff78a6bc42ee24582dbba662d52e075d084abff21bb3b
7
+ data.tar.gz: cae0b34d99b15b3f4c0939508dfc373b290b8aff22cd5215d1f99b3d3ea24479a5046a5bcaeb04b62af4ed41f0097c6b82ae2082ddf1de81d622d4b9a38d6cdd
data/README.md CHANGED
@@ -0,0 +1,34 @@
1
+ # Onboardbase Ruby SDK
2
+
3
+ ## Install
4
+
5
+ ```bash
6
+ gem install onboardbase
7
+ ```
8
+
9
+ ## Requirements
10
+ Ensure that you have onboardbase.yaml at the root of your project.
11
+ With the api_key and passcode field being set.
12
+ ```yaml
13
+ api_key: ********************** # Generate from onboardbase
14
+ passcode: ******** # Generate from onboardbase
15
+ setup:
16
+ project: **** # onboardbase project
17
+ environment: **** # Onboardbase environment
18
+ secrets:
19
+ local:
20
+ PORT: 3000
21
+
22
+ ```
23
+
24
+ ## Basic Usage
25
+ ```ruby
26
+ require File.expand_path('lib/onboardbase', __dir__)
27
+
28
+ Onboardbase.config do |c|
29
+ c.loadSecrets
30
+ end
31
+
32
+ p ENV["SECRET_ONBOARDBASE"]
33
+
34
+ ```
@@ -1,3 +1,3 @@
1
1
  module Onboardbase
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
data/onboardbase.gemspec CHANGED
@@ -5,7 +5,7 @@ Gem::Specification.new do |spec|
5
5
  spec.version = Onboardbase::VERSION
6
6
  spec.authors = ['Onboardbase']
7
7
  spec.email = ['admin@treadie.com']
8
- spec.description = "Access onboardbase secrets in your Ruby projects"
8
+ spec.description = "Use Onboardbase in your Ruby projects"
9
9
  spec.summary = "Use Onboardbase in your Ruby projects"
10
10
  spec.homepage= 'https://github.com/Onboardbase/onboardbase-ruby'
11
11
  spec.license = 'MIT'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: onboardbase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Onboardbase
@@ -136,7 +136,7 @@ dependencies:
136
136
  - - "~>"
137
137
  - !ruby/object:Gem::Version
138
138
  version: '1.37'
139
- description: Access onboardbase secrets in your Ruby projects
139
+ description: Use Onboardbase in your Ruby projects
140
140
  email:
141
141
  - admin@treadie.com
142
142
  executables: []