rake_fly 0.15.0 → 0.16.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_fly/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: 0a3ec55a166ed86658f1e6ec3d72bed008c47b789d0f8ac3257f2c70fbff019c
|
|
4
|
+
data.tar.gz: 15e9d5b1f2ebecf9147e0bf652958041c6da5f13ae8dfd4255014515d65a82c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e7177bc5630b56584ea35a898ff500641f179e319c7f9bae72cdd4215c48585bf731dc8cfd987b1a3c2743b7a4ec24bb799912e79f619278cb9cb33a39982496
|
|
7
|
+
data.tar.gz: 83987bb05cce07806fa3ed04da97bacf640763cc94174d45367d2fb4d962cb18e1d233a997b93754808a8a7b2a628627328127792d9e47f8236b67aa67f6281f
|
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_fly/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_fly
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.16.0.pre.pre.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Toby Clemson
|
|
@@ -202,9 +202,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
202
202
|
version: 2.3.8
|
|
203
203
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
204
204
|
requirements:
|
|
205
|
-
- - "
|
|
205
|
+
- - ">"
|
|
206
206
|
- !ruby/object:Gem::Version
|
|
207
|
-
version:
|
|
207
|
+
version: 1.3.1
|
|
208
208
|
requirements: []
|
|
209
209
|
rubygems_version: 3.0.3
|
|
210
210
|
signing_key:
|