ruby_vault 0.1.0.pre.17 → 0.1.0.pre.18
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +6 -6
- data/lib/ruby_vault/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 220180750eb71b11465c88c7ee1d5815d5143f716576fac291de3a2e503a8c05
|
4
|
+
data.tar.gz: fd4ce1eb5e5eed2a431646bd4598894f1c9ebcfed6b979dfa4c285793518c63a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb4f44287fd0873cc382534387d6e07ab02da91984bbc60602b622519ce99fad500667e2b5e4dc5609fa72fde43fe49cd0f6682e2e5a2e246f01783f40a6bd24
|
7
|
+
data.tar.gz: e81b388153735d0999493c48cef230100fb9c0e326703cb3dd926654c70829704e6a3e214544c8ba1f0b65dff46dcce8981228b0da10294876c4355028dd7448
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -35,7 +35,7 @@ require 'ruby_vault'
|
|
35
35
|
|
36
36
|
To install dependencies and run the build, run the pre-commit build:
|
37
37
|
|
38
|
-
```shell
|
38
|
+
```shell
|
39
39
|
./go
|
40
40
|
```
|
41
41
|
|
@@ -44,19 +44,19 @@ formatting.
|
|
44
44
|
|
45
45
|
To run only the unit tests, including coverage:
|
46
46
|
|
47
|
-
```shell
|
47
|
+
```shell
|
48
48
|
./go test:unit
|
49
49
|
```
|
50
50
|
|
51
51
|
To attempt to fix any code linting / formatting issues:
|
52
52
|
|
53
|
-
```shell
|
53
|
+
```shell
|
54
54
|
./go library:fix
|
55
55
|
```
|
56
56
|
|
57
57
|
To check for code linting / formatting issues without fixing:
|
58
58
|
|
59
|
-
```shell
|
59
|
+
```shell
|
60
60
|
./go library:check
|
61
61
|
```
|
62
62
|
|
@@ -67,7 +67,7 @@ experiment.
|
|
67
67
|
|
68
68
|
To encrypt a GPG key for use by CircleCI:
|
69
69
|
|
70
|
-
```
|
70
|
+
```shell
|
71
71
|
openssl aes-256-cbc \
|
72
72
|
-e \
|
73
73
|
-md sha1 \
|
@@ -78,7 +78,7 @@ openssl aes-256-cbc \
|
|
78
78
|
|
79
79
|
To check decryption is working correctly:
|
80
80
|
|
81
|
-
```
|
81
|
+
```shell
|
82
82
|
openssl aes-256-cbc \
|
83
83
|
-d \
|
84
84
|
-md sha1 \
|
data/lib/ruby_vault/version.rb
CHANGED