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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1cb2cb0fa9b59ae90d6de52599b66d7cd5a9283c0ed73c859e40495f83d74375
4
- data.tar.gz: 6f99746076b2d39f2827a88e9b828b410f98c77a32f07c620506af73e7f11227
3
+ metadata.gz: 43e9abbe6127e8a4db9704fec34296f46cebf0631fb8071b26e5582057556e40
4
+ data.tar.gz: 39804411e16d5e4f5dd44fcaa784c1d0a5fd7e033bbfe733e20fc09207e983c6
5
5
  SHA512:
6
- metadata.gz: b3745ed9f22fb7826bcf291c22affd5913007143b1c4cd20d03d100e85884364033869eb02e76fe8577f427db00198585816afe96a1b07f1d7df845060906968
7
- data.tar.gz: fa0976213456416b30dde8cb5157c6d1d3f5d8b9aa47377205cfb38ec47fa27f22df82b85c8e08d78d074405dc975b05d3dad57580d983d2c2b5dc5a47873d72
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.7
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.7
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.7
24
+ - image: ruby:2.3.8
25
25
  steps:
26
26
  - checkout
27
27
  - run: ./scripts/ci/common/install-git-crypt.sh
Binary file
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.3.7
1
+ 2.3.8
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby_fly (0.8.0.pre.pre.1)
4
+ ruby_fly (0.8.0.pre.pre.2)
5
5
  lino (~> 1.1)
6
6
 
7
7
  GEM
@@ -42,4 +42,4 @@ DEPENDENCIES
42
42
  ruby_fly!
43
43
 
44
44
  BUNDLED WITH
45
- 1.17.1
45
+ 1.17.3
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
@@ -1,3 +1,3 @@
1
1
  module RubyFly
2
- VERSION = '0.8.0-pre.1'
2
+ VERSION = '0.8.0-pre.2'
3
3
  end
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
- -in ./.circleci/gpg.private.enc -k "${ENCRYPTION_PASSPHRASE}" | gpg --import -
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.1
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: 2018-11-19 00:00:00.000000000 Z
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: '0'
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
- rubyforge_project:
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.