voltos 0.3.0.rc14 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +80 -66
- data/lib/voltos/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fce1c67e7bdf61cbced27a26f19218350afbd5d9
|
4
|
+
data.tar.gz: 2772bec2f61cc7da09bd2ed208e37fd7fcc9e6a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2476d79196557f2e0f7fbc1238d51222b2bd7259332f30672cd2b7be5d65df91e2a6df0180e696f93fe452cdc878591387f179dc89e93bd1a8d75bcd3463e39
|
7
|
+
data.tar.gz: 4aef9faaf5169a92bcb617fdc546c490e511b456e946b129b2166f800d94aa3ff4e822565ef116cfa31dc2e2004a2103a7f5ec77e1f2ff8034c15785a24cc7ad
|
data/README.md
CHANGED
@@ -4,88 +4,102 @@ This gem provides Voltos Ruby bindings to access the Voltos API from apps writte
|
|
4
4
|
|
5
5
|
Voltos stores your credentials (e.g. API keys, usernames, passwords, tokens) in a secure, central location - so that your apps can access them, and you can more easily manage them & access to them.
|
6
6
|
|
7
|
+
## Contents
|
8
|
+
* [Installation](#installation)
|
9
|
+
* [Getting started](#getting-started)
|
10
|
+
|
7
11
|
## Installation
|
8
12
|
|
9
13
|
Add this line to your application's Gemfile:
|
10
14
|
|
11
15
|
```ruby
|
12
|
-
gem 'voltos'
|
16
|
+
gem 'voltos', '~> 0.3.0rc14'
|
13
17
|
```
|
14
18
|
|
15
19
|
And then execute:
|
16
20
|
|
17
|
-
$ bundle
|
21
|
+
$ bundle install
|
18
22
|
|
19
23
|
Or install it yourself as:
|
20
24
|
|
21
25
|
$ gem install voltos
|
26
|
+
|
27
|
+
### Troubleshooting installation
|
28
|
+
|
29
|
+
**Ubuntu**
|
30
|
+
|
31
|
+
You may need to install native extensions first:
|
32
|
+
```
|
33
|
+
sudo apt-get install libcurl4-openssl-dev
|
34
|
+
```
|
22
35
|
|
23
36
|
## Getting started
|
24
37
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
38
|
+
### Sign up
|
39
|
+
```
|
40
|
+
$ voltos signup
|
41
|
+
```
|
42
|
+
|
43
|
+
### Sign in
|
44
|
+
```
|
45
|
+
$ voltos auth
|
46
|
+
```
|
47
|
+
|
48
|
+
### Create bundle of credentials
|
49
|
+
```
|
50
|
+
$ voltos create piedpiper-backend
|
51
|
+
```
|
52
|
+
|
53
|
+
### Add credentials to bundle
|
54
|
+
```
|
55
|
+
## add to default bundle in use
|
56
|
+
$ voltos set MAILSERVICE=17263ed6547a7c7d8372
|
57
|
+
$ voltos set DEV_URL=https://dev.piedpiper.io
|
58
|
+
|
59
|
+
## or explicitly specify which bundle:
|
60
|
+
$ voltos set MAILSERVICE=17263ed6547a7c7d8372 piedpiper-backend
|
61
|
+
$ voltos set DEV_URL=https://dev.piedpiper.io piedpiper-backend
|
62
|
+
```
|
63
|
+
|
64
|
+
### List credentials in a bundle
|
65
|
+
```
|
66
|
+
$ voltos list
|
67
|
+
```
|
68
|
+
|
69
|
+
### List all bundles of credentials that you can access
|
70
|
+
```
|
71
|
+
$ voltos list --all
|
72
|
+
```
|
73
|
+
|
74
|
+
### Share bundle of credentials
|
75
|
+
```
|
76
|
+
$ voltos share sasha@hooli.com
|
77
|
+
```
|
78
|
+
|
79
|
+
### Unshare bundle of credentials
|
80
|
+
```
|
81
|
+
$ voltos retract piedpiper-backend sasha@hooli.com
|
82
|
+
```
|
83
|
+
|
84
|
+
### Remove credentials
|
85
|
+
```
|
86
|
+
$ voltos unset piedpiper-backend DEV_URL
|
87
|
+
```
|
88
|
+
|
89
|
+
### Destroy bundle of credentials
|
90
|
+
```
|
91
|
+
$ voltos destroy piedpiper-backend
|
92
|
+
```
|
93
|
+
|
94
|
+
|
95
|
+
## Using Voltos with your apps
|
96
|
+
|
97
|
+
When you're done loading up your bundles with credentials, you'll want to start using them with your apps.
|
98
|
+
|
99
|
+
### Running locally
|
100
|
+
|
101
|
+
### Deploying to Heroku
|
102
|
+
|
89
103
|
|
90
104
|
## Contributing
|
91
105
|
|
data/lib/voltos/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: voltos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.0
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel May
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -155,9 +155,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
155
155
|
version: '0'
|
156
156
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
157
157
|
requirements:
|
158
|
-
- - "
|
158
|
+
- - ">="
|
159
159
|
- !ruby/object:Gem::Version
|
160
|
-
version:
|
160
|
+
version: '0'
|
161
161
|
requirements: []
|
162
162
|
rubyforge_project:
|
163
163
|
rubygems_version: 2.5.1
|