ruby_fly 0.8.0.pre.pre.1 → 0.8.0.pre.pre.2
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/config.yml +3 -3
- data/.circleci/gpg.private.enc +0 -0
- data/.ruby-version +1 -1
- data/Gemfile.lock +2 -2
- data/README.md +23 -0
- data/go +0 -5
- data/lib/ruby_fly/version.rb +1 -1
- data/ruby_fly.gemspec +2 -0
- data/scripts/ci/common/install-gpg-key.sh +4 -1
- metadata +4 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 43e9abbe6127e8a4db9704fec34296f46cebf0631fb8071b26e5582057556e40
|
4
|
+
data.tar.gz: 39804411e16d5e4f5dd44fcaa784c1d0a5fd7e033bbfe733e20fc09207e983c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6e819bf9a2f5dd0395d74fe5ae0e91909089d4a910d435f30aa54d99d9904847ff72bbf8741b56eeb69d570e5fc6e29c805dd1842c60a237babcb5390dfda86
|
7
|
+
data.tar.gz: 40da1013726caba0123d07f83db15e192dd2ed26c056ef99903e2141203661a60b9f3adfc971e08dc3ae4dab2027f500cbec43a8090e15a5751a81c4b915defb
|
data/.circleci/config.yml
CHANGED
@@ -3,14 +3,14 @@ jobs:
|
|
3
3
|
test:
|
4
4
|
working_directory: ~/ruby-fly
|
5
5
|
docker:
|
6
|
-
- image: ruby:2.3.
|
6
|
+
- image: ruby:2.3.8
|
7
7
|
steps:
|
8
8
|
- checkout
|
9
9
|
- run: ./scripts/ci/steps/test.sh
|
10
10
|
prerelease:
|
11
11
|
working_directory: ~/ruby-fly
|
12
12
|
docker:
|
13
|
-
- image: ruby:2.3.
|
13
|
+
- image: ruby:2.3.8
|
14
14
|
steps:
|
15
15
|
- checkout
|
16
16
|
- run: ./scripts/ci/common/install-git-crypt.sh
|
@@ -21,7 +21,7 @@ jobs:
|
|
21
21
|
release:
|
22
22
|
working_directory: ~/ruby-fly
|
23
23
|
docker:
|
24
|
-
- image: ruby:2.3.
|
24
|
+
- image: ruby:2.3.8
|
25
25
|
steps:
|
26
26
|
- checkout
|
27
27
|
- run: ./scripts/ci/common/install-git-crypt.sh
|
data/.circleci/gpg.private.enc
CHANGED
Binary file
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.3.
|
1
|
+
2.3.8
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -136,6 +136,29 @@ release a new version, update the version number in `version.rb`, and then run
|
|
136
136
|
git commits and tags, and push the `.gem` file to
|
137
137
|
[rubygems.org](https://rubygems.org).
|
138
138
|
|
139
|
+
### Managing CircleCI keys
|
140
|
+
|
141
|
+
To encrypt a GPG key for use by CircleCI:
|
142
|
+
|
143
|
+
```bash
|
144
|
+
openssl aes-256-cbc \
|
145
|
+
-e \
|
146
|
+
-md sha1 \
|
147
|
+
-in ./config/secrets/ci/gpg.private \
|
148
|
+
-out ./.circleci/gpg.private.enc \
|
149
|
+
-k "<passphrase>"
|
150
|
+
```
|
151
|
+
|
152
|
+
To check decryption is working correctly:
|
153
|
+
|
154
|
+
```bash
|
155
|
+
openssl aes-256-cbc \
|
156
|
+
-d \
|
157
|
+
-md sha1 \
|
158
|
+
-in ./.circleci/gpg.private.enc \
|
159
|
+
-k "<passphrase>"
|
160
|
+
```
|
161
|
+
|
139
162
|
## Contributing
|
140
163
|
|
141
164
|
Bug reports and pull requests are welcome on GitHub at
|
data/go
CHANGED
@@ -24,11 +24,6 @@ if [[ "$skip_checks" = "no" ]]; then
|
|
24
24
|
missing_dependency="yes"
|
25
25
|
fi
|
26
26
|
|
27
|
-
if ! type bundler >/dev/null 2>&1; then
|
28
|
-
echo "This codebase requires Bundler."
|
29
|
-
missing_dependency="yes"
|
30
|
-
fi
|
31
|
-
|
32
27
|
if [[ "$missing_dependency" = "yes" ]]; then
|
33
28
|
echo "Please install missing dependencies to continue."
|
34
29
|
exit 1
|
data/lib/ruby_fly/version.rb
CHANGED
data/ruby_fly.gemspec
CHANGED
@@ -21,6 +21,8 @@ Gem::Specification.new do |spec|
|
|
21
21
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
22
|
spec.require_paths = ['lib']
|
23
23
|
|
24
|
+
spec.required_ruby_version = '>= 2.3.8'
|
25
|
+
|
24
26
|
spec.add_dependency 'lino', '~> 1.1'
|
25
27
|
|
26
28
|
spec.add_development_dependency 'bundler', '~> 1.17'
|
@@ -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,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby_fly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.0.pre.pre.
|
4
|
+
version: 0.8.0.pre.pre.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Toby Clemson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: lino
|
@@ -142,15 +142,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
142
142
|
requirements:
|
143
143
|
- - ">="
|
144
144
|
- !ruby/object:Gem::Version
|
145
|
-
version:
|
145
|
+
version: 2.3.8
|
146
146
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
147
147
|
requirements:
|
148
148
|
- - ">"
|
149
149
|
- !ruby/object:Gem::Version
|
150
150
|
version: 1.3.1
|
151
151
|
requirements: []
|
152
|
-
|
153
|
-
rubygems_version: 2.7.7
|
152
|
+
rubygems_version: 3.0.3
|
154
153
|
signing_key:
|
155
154
|
specification_version: 4
|
156
155
|
summary: A simple Ruby wrapper for invoking fly commands.
|