rake_docker 0.21.0 → 0.22.0.pre.pre.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 +4 -4
- data/.circleci/gpg.private.enc +0 -0
- data/Gemfile.lock +1 -1
- data/README.md +23 -0
- data/lib/rake_docker/version.rb +1 -1
- data/scripts/ci/common/install-gpg-key.sh +4 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 05331a28437f3598f8f212e2cadb87116460fc5b5f8bb5140fc90afaaaf59562
|
4
|
+
data.tar.gz: 39407b6cbcc024dbb4c70814e0741ec8983f5ffaee17d7e610c7d600f4f97922
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f22800f5181a704681c148864f8d30974b1cd3a0c5e4a92c491aecb7de05d020e92dac2289aa2cccae871d5e8e4d35c413f1f822327e8c2760e8136c9c94af1
|
7
|
+
data.tar.gz: 51d09e09c9badd07a9a7e9ef76dcd1141bf2334f3252a9ea3af3a3f4548f781206fe3f6351630e8f49db5dca97ab3e05b34eb89e69e110b4dc77da0dcf6b95cb
|
data/.circleci/gpg.private.enc
CHANGED
Binary file
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -35,6 +35,29 @@ release a new version, update the version number in `version.rb`, and then run
|
|
35
35
|
git commits and tags, and push the `.gem` file to
|
36
36
|
[rubygems.org](https://rubygems.org).
|
37
37
|
|
38
|
+
### Managing CircleCI keys
|
39
|
+
|
40
|
+
To encrypt a GPG key for use by CircleCI:
|
41
|
+
|
42
|
+
```bash
|
43
|
+
openssl aes-256-cbc \
|
44
|
+
-e \
|
45
|
+
-md sha1 \
|
46
|
+
-in ./config/secrets/ci/gpg.private \
|
47
|
+
-out ./.circleci/gpg.private.enc \
|
48
|
+
-k "<passphrase>"
|
49
|
+
```
|
50
|
+
|
51
|
+
To check decryption is working correctly:
|
52
|
+
|
53
|
+
```bash
|
54
|
+
openssl aes-256-cbc \
|
55
|
+
-d \
|
56
|
+
-md sha1 \
|
57
|
+
-in ./.circleci/gpg.private.enc \
|
58
|
+
-k "<passphrase>"
|
59
|
+
```
|
60
|
+
|
38
61
|
## Contributing
|
39
62
|
|
40
63
|
Bug reports and pull requests are welcome on GitHub at
|
data/lib/rake_docker/version.rb
CHANGED
@@ -10,7 +10,10 @@ PROJECT_DIR="$( cd "$SCRIPT_DIR/../../.." && pwd )"
|
|
10
10
|
cd "$PROJECT_DIR"
|
11
11
|
|
12
12
|
set +e
|
13
|
+
openssl version
|
13
14
|
openssl aes-256-cbc \
|
14
15
|
-d \
|
15
|
-
-
|
16
|
+
-md sha1 \
|
17
|
+
-in ./.circleci/gpg.private.enc \
|
18
|
+
-k "${ENCRYPTION_PASSPHRASE}" | gpg --import -
|
16
19
|
set -e
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rake_docker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.0.pre.pre.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Toby Clemson
|
@@ -222,9 +222,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
222
222
|
version: 2.3.8
|
223
223
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
224
224
|
requirements:
|
225
|
-
- - "
|
225
|
+
- - ">"
|
226
226
|
- !ruby/object:Gem::Version
|
227
|
-
version:
|
227
|
+
version: 1.3.1
|
228
228
|
requirements: []
|
229
229
|
rubygems_version: 3.0.3
|
230
230
|
signing_key:
|