rake_easy_rsa 0.2.0.pre.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.circleci/config.yml +56 -0
- data/.circleci/gpg.private.enc +0 -0
- data/.envrc +5 -0
- data/.git-crypt/.gitattributes +4 -0
- data/.git-crypt/keys/default/0/41D2606F66C3FF28874362B61A16916844CE9D82.gpg +0 -0
- data/.git-crypt/keys/default/0/AAE932B730C2BA697FFDFAE05DA390873E38358B.gpg +0 -0
- data/.gitattributes +1 -0
- data/.gitignore +32 -0
- data/.rspec +2 -0
- data/.ruby-version +1 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +108 -0
- data/LICENSE.txt +21 -0
- data/README.md +72 -0
- data/Rakefile +79 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/config/secrets/.unlocked +1 -0
- data/config/secrets/ci/encryption.passphrase +1 -0
- data/config/secrets/ci/gpg.private +58 -0
- data/config/secrets/ci/gpg.public +31 -0
- data/config/secrets/ci/ssh.private +51 -0
- data/config/secrets/ci/ssh.public +1 -0
- data/config/secrets/circle_ci/config.yaml +2 -0
- data/config/secrets/github/config.yaml +2 -0
- data/config/secrets/rubygems/credentials +2 -0
- data/go +56 -0
- data/lib/rake_easy_rsa.rb +3 -0
- data/lib/rake_easy_rsa/version.rb +3 -0
- data/rake_easy_rsa.gemspec +40 -0
- data/scripts/ci/common/configure-git.sh +8 -0
- data/scripts/ci/common/configure-rubygems.sh +16 -0
- data/scripts/ci/common/install-git-crypt.sh +8 -0
- data/scripts/ci/common/install-gpg-key.sh +19 -0
- data/scripts/ci/steps/prerelease.sh +16 -0
- data/scripts/ci/steps/release.sh +18 -0
- data/scripts/ci/steps/test.sh +12 -0
- metadata +275 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0c17d82900099c90a2e0893d57c30e3af979f75ca85c89f7ab823d46ae62aae9
|
4
|
+
data.tar.gz: b339ab6f4ae3a76c10e281fff6edad75e001128ed34e54c6c2eb1d2db013f370
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a76631116d5ace827fb91d389da49a0afc841827fbbd8a3da855ef2e4625d9bd75f93978ec801b78194a33975ab978dc7450cc0d735e1088ca9c6081ad3a9e22
|
7
|
+
data.tar.gz: bc18ce478e6ae54446dd661cc377a84970e1a182d1c226b262a0889186b223aae2242ae6dab9a1aacb01fa57d2752efa63e63e99c3bcb0838117a1cd96ca8a2e
|
@@ -0,0 +1,56 @@
|
|
1
|
+
version: 2.1
|
2
|
+
jobs:
|
3
|
+
test:
|
4
|
+
working_directory: ~/source
|
5
|
+
docker:
|
6
|
+
- image: ruby:2.6.0
|
7
|
+
steps:
|
8
|
+
- checkout
|
9
|
+
- run: ./scripts/ci/steps/test.sh
|
10
|
+
prerelease:
|
11
|
+
working_directory: ~/source
|
12
|
+
docker:
|
13
|
+
- image: ruby:2.6.0
|
14
|
+
steps:
|
15
|
+
- checkout
|
16
|
+
- run: ./scripts/ci/common/install-git-crypt.sh
|
17
|
+
- run: ./scripts/ci/common/install-gpg-key.sh
|
18
|
+
- run: ./scripts/ci/common/configure-git.sh
|
19
|
+
- run: ./scripts/ci/common/configure-rubygems.sh
|
20
|
+
- run: ./scripts/ci/steps/prerelease.sh
|
21
|
+
release:
|
22
|
+
working_directory: ~/source
|
23
|
+
docker:
|
24
|
+
- image: ruby:2.6.0
|
25
|
+
steps:
|
26
|
+
- checkout
|
27
|
+
- run: ./scripts/ci/common/install-git-crypt.sh
|
28
|
+
- run: ./scripts/ci/common/install-gpg-key.sh
|
29
|
+
- run: ./scripts/ci/common/configure-git.sh
|
30
|
+
- run: ./scripts/ci/common/configure-rubygems.sh
|
31
|
+
- run: ./scripts/ci/steps/release.sh
|
32
|
+
|
33
|
+
workflows:
|
34
|
+
version: 2
|
35
|
+
pipeline:
|
36
|
+
jobs:
|
37
|
+
- test
|
38
|
+
- prerelease:
|
39
|
+
requires:
|
40
|
+
- test
|
41
|
+
filters:
|
42
|
+
branches:
|
43
|
+
only: master
|
44
|
+
- hold:
|
45
|
+
type: approval
|
46
|
+
requires:
|
47
|
+
- prerelease
|
48
|
+
filters:
|
49
|
+
branches:
|
50
|
+
only: master
|
51
|
+
- release:
|
52
|
+
requires:
|
53
|
+
- hold
|
54
|
+
filters:
|
55
|
+
branches:
|
56
|
+
only: master
|
Binary file
|
data/.envrc
ADDED
data/.gitattributes
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
config/secrets/** filter=git-crypt diff=git-crypt
|
data/.gitignore
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
## Standard stuff:
|
2
|
+
*.gem
|
3
|
+
*.rbc
|
4
|
+
.rakeTasks
|
5
|
+
/.config
|
6
|
+
/coverage/
|
7
|
+
/InstalledFiles
|
8
|
+
/pkg/
|
9
|
+
.rspec_status
|
10
|
+
/spec/reports/
|
11
|
+
/spec/examples.txt
|
12
|
+
/test/tmp/
|
13
|
+
/test/version_tmp/
|
14
|
+
/tmp/
|
15
|
+
|
16
|
+
## Documentation cache and generated files:
|
17
|
+
/.yardoc/
|
18
|
+
/_yardoc/
|
19
|
+
/doc/
|
20
|
+
/rdoc/
|
21
|
+
/coverage/
|
22
|
+
|
23
|
+
## Environment normalization:
|
24
|
+
/.bundle/
|
25
|
+
/vendor/bundle
|
26
|
+
/lib/bundler/man/
|
27
|
+
|
28
|
+
## IDE:
|
29
|
+
.idea
|
30
|
+
*.ipr
|
31
|
+
*.iws
|
32
|
+
*.iml
|
data/.rspec
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.6.0
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at tobyclemson@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,108 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
rake_easy_rsa (0.2.0.pre.1)
|
5
|
+
rake_dependencies (~> 2, < 3)
|
6
|
+
rake_factory (>= 0.23, < 1)
|
7
|
+
semantic (~> 1.6.1)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
activesupport (6.0.2.2)
|
13
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
14
|
+
i18n (>= 0.7, < 2)
|
15
|
+
minitest (~> 5.1)
|
16
|
+
tzinfo (~> 1.1)
|
17
|
+
zeitwerk (~> 2.2)
|
18
|
+
addressable (2.7.0)
|
19
|
+
public_suffix (>= 2.0.2, < 5.0)
|
20
|
+
colored2 (3.1.2)
|
21
|
+
concurrent-ruby (1.1.6)
|
22
|
+
diff-lcs (1.3)
|
23
|
+
docile (1.3.2)
|
24
|
+
excon (0.73.0)
|
25
|
+
fakefs (0.20.1)
|
26
|
+
faraday (1.0.1)
|
27
|
+
multipart-post (>= 1.2, < 3)
|
28
|
+
gem-release (2.1.1)
|
29
|
+
hamster (3.0.0)
|
30
|
+
concurrent-ruby (~> 1.0)
|
31
|
+
i18n (1.8.2)
|
32
|
+
concurrent-ruby (~> 1.0)
|
33
|
+
minitar (0.9)
|
34
|
+
minitest (5.14.0)
|
35
|
+
multipart-post (2.1.1)
|
36
|
+
octokit (4.18.0)
|
37
|
+
faraday (>= 0.9)
|
38
|
+
sawyer (~> 0.8.0, >= 0.5.3)
|
39
|
+
public_suffix (4.0.4)
|
40
|
+
rake (13.0.1)
|
41
|
+
rake_circle_ci (0.5.0)
|
42
|
+
colored2 (~> 3.1)
|
43
|
+
excon (~> 0.72)
|
44
|
+
rake_factory (~> 0.23)
|
45
|
+
sshkey (~> 2.0)
|
46
|
+
rake_dependencies (2.5.0)
|
47
|
+
hamster (~> 3.0)
|
48
|
+
minitar (~> 0.9)
|
49
|
+
rake_factory (~> 0.23)
|
50
|
+
rubyzip (>= 1.3)
|
51
|
+
rake_factory (0.27.0)
|
52
|
+
activesupport (>= 4)
|
53
|
+
rake (~> 13.0)
|
54
|
+
rake_github (0.5.0)
|
55
|
+
colored2 (~> 3.1)
|
56
|
+
octokit (~> 4.16)
|
57
|
+
rake_factory (~> 0.23)
|
58
|
+
sshkey (~> 2.0)
|
59
|
+
rake_ssh (0.4.0)
|
60
|
+
colored2 (~> 3.1)
|
61
|
+
rake_factory (~> 0.23)
|
62
|
+
sshkey (~> 2.0)
|
63
|
+
rspec (3.9.0)
|
64
|
+
rspec-core (~> 3.9.0)
|
65
|
+
rspec-expectations (~> 3.9.0)
|
66
|
+
rspec-mocks (~> 3.9.0)
|
67
|
+
rspec-core (3.9.1)
|
68
|
+
rspec-support (~> 3.9.1)
|
69
|
+
rspec-expectations (3.9.1)
|
70
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
71
|
+
rspec-support (~> 3.9.0)
|
72
|
+
rspec-mocks (3.9.1)
|
73
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
74
|
+
rspec-support (~> 3.9.0)
|
75
|
+
rspec-support (3.9.2)
|
76
|
+
rubyzip (2.3.0)
|
77
|
+
sawyer (0.8.2)
|
78
|
+
addressable (>= 2.3.5)
|
79
|
+
faraday (> 0.8, < 2.0)
|
80
|
+
semantic (1.6.1)
|
81
|
+
simplecov (0.18.5)
|
82
|
+
docile (~> 1.1)
|
83
|
+
simplecov-html (~> 0.11)
|
84
|
+
simplecov-html (0.12.2)
|
85
|
+
sshkey (2.0.0)
|
86
|
+
thread_safe (0.3.6)
|
87
|
+
tzinfo (1.2.7)
|
88
|
+
thread_safe (~> 0.1)
|
89
|
+
zeitwerk (2.3.0)
|
90
|
+
|
91
|
+
PLATFORMS
|
92
|
+
ruby
|
93
|
+
|
94
|
+
DEPENDENCIES
|
95
|
+
activesupport (>= 4)
|
96
|
+
bundler (~> 2.1)
|
97
|
+
fakefs (~> 0.18)
|
98
|
+
gem-release (~> 2.0)
|
99
|
+
rake (~> 13.0)
|
100
|
+
rake_circle_ci (~> 0.3)
|
101
|
+
rake_easy_rsa!
|
102
|
+
rake_github (~> 0.3)
|
103
|
+
rake_ssh (~> 0.2)
|
104
|
+
rspec (~> 3.9)
|
105
|
+
simplecov (~> 0.16)
|
106
|
+
|
107
|
+
BUNDLED WITH
|
108
|
+
2.1.4
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 InfraBlocks
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
# RakeFly
|
2
|
+
|
3
|
+
Rake tasks for common fly interactions allowing Concourse pipelines to be
|
4
|
+
managed as part of a build.
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
Add this line to your application's Gemfile:
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
gem 'rake_fly'
|
12
|
+
```
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
|
16
|
+
$ bundle
|
17
|
+
|
18
|
+
Or install it yourself as:
|
19
|
+
|
20
|
+
$ gem install rake_docker
|
21
|
+
|
22
|
+
## Usage
|
23
|
+
|
24
|
+
TODO: Write usage instructions here
|
25
|
+
|
26
|
+
## Development
|
27
|
+
|
28
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
29
|
+
`rake spec` to run the tests. You can also run `bin/console` for an interactive
|
30
|
+
prompt that will allow you to experiment.
|
31
|
+
|
32
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To
|
33
|
+
release a new version, update the version number in `version.rb`, and then run
|
34
|
+
`bundle exec rake release`, which will create a git tag for the version, push
|
35
|
+
git commits and tags, and push the `.gem` file to
|
36
|
+
[rubygems.org](https://rubygems.org).
|
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
|
+
|
61
|
+
## Contributing
|
62
|
+
|
63
|
+
Bug reports and pull requests are welcome on GitHub at
|
64
|
+
https://github.com/infrablocks/rake_fly. This project is intended to be a
|
65
|
+
safe, welcoming space for collaboration, and contributors are expected to
|
66
|
+
adhere to the [Contributor Covenant](http://contributor-covenant.org) code of
|
67
|
+
conduct.
|
68
|
+
|
69
|
+
## License
|
70
|
+
|
71
|
+
The gem is available as open source under the terms of the
|
72
|
+
[MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
require 'rake_circle_ci'
|
3
|
+
require 'rake_github'
|
4
|
+
require 'rake_ssh'
|
5
|
+
require 'rspec/core/rake_task'
|
6
|
+
|
7
|
+
task :default => :spec
|
8
|
+
|
9
|
+
RSpec::Core::RakeTask.new(:spec)
|
10
|
+
|
11
|
+
RakeSSH.define_key_tasks(
|
12
|
+
namespace: :deploy_key,
|
13
|
+
path: 'config/secrets/ci/',
|
14
|
+
comment: 'maintainers@infrablocks.io'
|
15
|
+
)
|
16
|
+
|
17
|
+
RakeCircleCI.define_project_tasks(
|
18
|
+
namespace: :circle_ci,
|
19
|
+
project_slug: 'github/infrablocks/rake_easy_rsa'
|
20
|
+
) do |t|
|
21
|
+
circle_ci_config =
|
22
|
+
YAML.load_file('config/secrets/circle_ci/config.yaml')
|
23
|
+
|
24
|
+
t.api_token = circle_ci_config["circle_ci_api_token"]
|
25
|
+
t.environment_variables = {
|
26
|
+
ENCRYPTION_PASSPHRASE:
|
27
|
+
File.read('config/secrets/ci/encryption.passphrase')
|
28
|
+
.chomp
|
29
|
+
}
|
30
|
+
t.ssh_keys = [
|
31
|
+
{
|
32
|
+
hostname: "github.com",
|
33
|
+
private_key: File.read('config/secrets/ci/ssh.private')
|
34
|
+
}
|
35
|
+
]
|
36
|
+
end
|
37
|
+
|
38
|
+
RakeGithub.define_repository_tasks(
|
39
|
+
namespace: :github,
|
40
|
+
repository: 'infrablocks/rake_easy_rsa',
|
41
|
+
) do |t|
|
42
|
+
github_config =
|
43
|
+
YAML.load_file('config/secrets/github/config.yaml')
|
44
|
+
|
45
|
+
t.access_token = github_config["github_personal_access_token"]
|
46
|
+
t.deploy_keys = [
|
47
|
+
{
|
48
|
+
title: 'CircleCI',
|
49
|
+
public_key: File.read('config/secrets/ci/ssh.public')
|
50
|
+
}
|
51
|
+
]
|
52
|
+
end
|
53
|
+
|
54
|
+
namespace :pipeline do
|
55
|
+
task :prepare => [
|
56
|
+
:'circle_ci:env_vars:ensure',
|
57
|
+
:'circle_ci:ssh_keys:ensure',
|
58
|
+
:'github:deploy_keys:ensure'
|
59
|
+
]
|
60
|
+
end
|
61
|
+
|
62
|
+
namespace :version do
|
63
|
+
desc "Bump version for specified type (pre, major, minor, patch)"
|
64
|
+
task :bump, [:type] do |_, args|
|
65
|
+
bump_version_for(args.type)
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
desc "Release gem"
|
70
|
+
task :release do
|
71
|
+
sh "gem release --tag --push"
|
72
|
+
end
|
73
|
+
|
74
|
+
def bump_version_for(version_type)
|
75
|
+
sh "gem bump --version #{version_type} " +
|
76
|
+
"&& bundle install " +
|
77
|
+
"&& export LAST_MESSAGE=\"$(git log -1 --pretty=%B)\" " +
|
78
|
+
"&& git commit -a --amend -m \"${LAST_MESSAGE} [ci skip]\""
|
79
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "rake_easyrsa"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
true
|
@@ -0,0 +1 @@
|
|
1
|
+
fmFsBRd0haxdPyYDNZkgDHojaZ3MgWg5DFZKrzJtQCVdehpX
|
@@ -0,0 +1,58 @@
|
|
1
|
+
-----BEGIN PGP PRIVATE KEY BLOCK-----
|
2
|
+
|
3
|
+
lQOYBF5iajgBCADpMbSEz+Fl4HgUxXQLTuIi01QMf/dkwVDuwNrPdVtkKKi27RS5
|
4
|
+
OOiJYYzHkSqJwdbrMf1R/Uj1S4D4zP9BPc9VmKm1tPRnk4rrhpJPE9jR9X/6RTw3
|
5
|
+
ilIqelK84WfR74yAbaQYtEF3YEOhWSCvwsf3jQuE8LBMGh+Zf8DlYeH5wBvIIF5x
|
6
|
+
y0GDktvq5+dr/szqi8rMCz3MdiouUDbyWmMKwjmegSLzS/kf8dgiEg7iChVYNSAT
|
7
|
+
SBqxRZCWADiO61vzTO8YlZj4ke+S7Lkg/d4lafVJ3Bsw89K7F79+mIZaBU1oon8v
|
8
|
+
y+AM7QAK6kGgb50vsS9QYRtYqZzK0DsaLNhVABEBAAEAB/4wRYIDAR49LslksVf7
|
9
|
+
dEWS5HCQUtgFExBcD+9rhPVZZyI/lZWV3u4h7B/OeuIVmJrS3mr8EySMZGgK+LJ5
|
10
|
+
EKCv7RVqYA48t5nI9fco5+iY08s9ZSIZNCickuw4HafWWRJaTnfqxjuMCNEPIApI
|
11
|
+
X9dxitCg4Qr5genbJkspoIi84C6R0tRF/PhadZg3VOXnASLFmk0JPj9OY1a88/r1
|
12
|
+
SU3uCE0yIxjD++UWBw4cBJec1Y4VoUfvnYe31RqvhRmNH5uCddK1xBXK0Bc9xV2L
|
13
|
+
D3XSGX1KMKYkoj/EXm5VMPgbqgJO5sZ7X1nvaRvzvM1Ic9m2d79Bo1M8I6kz15Uj
|
14
|
+
anKhBADqXGuE8sUA8/BcrA6WpgSzRQzMMcz+g4bnfaddLDRmwlmsMKZFs07MwNQ6
|
15
|
+
cx9SyxzLnZJj134fHCQB3UKEGvXyJjRv/BCgQwO0PpX/l0VXMv2L8f5+Uhi3/8ro
|
16
|
+
PdyT7XNOMbPwtOjPGAyUaip7vklbek74Ze8yRaEnvxTm3zIftQQA/rm0SoTYlsMf
|
17
|
+
nk2DgyZMy1gZEYKA7LhFjpcwnXpqq2S23DH1qXkPMEA45Srq/Gkaqc8HE8GYOYlZ
|
18
|
+
kuYqgVyqN5TFVObFZNHE3ESVsHBrmYJyFYldIK3q6jkg8c+C01GKgE7ykZdByiUy
|
19
|
+
tQvDSYXe8UW4FHEbZZ/FJ4Mef3LA+iED/0wBOc/4XciLMpVB+yRMjvvb0qaRKJMx
|
20
|
+
ck3YViHEuImn4qSyefwUsQGeZY/8sZc0tO0yyRXwXZNip8vGKC8EizG/v52uhyRg
|
21
|
+
gNDeNf5N/gR5qnK/Op7Y8HwDaIoJCpkWuuouZr1U5CgoaFwRSL3Nkso3Ja6ni7s8
|
22
|
+
kqK/42D0h7ilQhi0M09wZW4gU291cmNlIENJIDx0b2J5Y2xlbXNvbitvcGVuc291
|
23
|
+
cmNlY2lAZ21haWwuY29tPokBVAQTAQgAPhYhBKrpMrcwwrppf/364F2jkIc+ODWL
|
24
|
+
BQJeYmo4AhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEF2jkIc+
|
25
|
+
ODWLqhUIAMSJ9l+acSPSnW0MDhjFn46cFUSCb7YF77wBBrMj6LhQnvad5ii+ik+f
|
26
|
+
ld2iK0ZGg33j9b6xY7XzoLUsa/HISdLdF6xgsMJZMhDfBRaCDDH98cbvUkR1rdim
|
27
|
+
SxNMWnEd+q7BApgSItVfnuMcZDpAPY+QnoqjWTlM1GVK0cjD7Fb3QiAOomBsD+O3
|
28
|
+
zBqBpGBZ8bnkaxu7WfQMSV0QBBoyV5pNkYPspHWJgIm1axwYX9383ftDDtVzAQ6Y
|
29
|
+
cO8x+NntEIbV7RFwyCD+AlglDfUMe4ZYxniIjYhAWrGNVMrLsyfkSYDd9keUQGXg
|
30
|
+
rWupgrH1oEPUv0RkM43KV82wqoxJJaGdA5gEXmJqOAEIALXw6hlF/PWRPIWIO6tJ
|
31
|
+
S6u5g8ndnwlmNLbhgUj0D7OjXS1mzjFIeKvmjFBb/6klmrow8WilnbjzgNWzHsSg
|
32
|
+
kQGrn5WgiC+jDhwAv2UB6afs4MySM+gD1EZc8AAIE/asONMql/GVhPMRr4vbd7D7
|
33
|
+
UdEA8YCVUc7qPRFITBPS/x2/E4lAzY/q5KZ9uFI89Xrw02A7/Z4j+pWgOpUu/yEx
|
34
|
+
Su8pvFJ65aJ5t2nw48MdnYoykKKeZ/0FEzXjs/MbJGDwVcM699TGodqMw40Kl7jI
|
35
|
+
qIje7HvW18pRKgbwuzFJTA0gfAl6qWWbhaGBm5E1zr/vTBh+vt4dLOtXD+5rG0bl
|
36
|
+
NlMAEQEAAQAH/0zGT5LApODfG6HhfgRmlobtbr5VRdIKjf4KJKsrSiDss9n/wsyr
|
37
|
+
Hziyvcz/NWAkHSmqk4QsNuUf4+LJhhdFBkulJ19VcYJglQieDCXMa9PPsoDAxSSH
|
38
|
+
0SCsAR6SShJSVFxPYfSwunxznxcuUlCdjMXcVwyCdhYRZBmR34CSDdN34dKP9E4U
|
39
|
+
zvwJF6IdlN1gVAK1i6WCBh3pyn/QTCnZHzARc3KN9O/r7YWc2Be5D5cvd97XFBtf
|
40
|
+
BgyT9ncFjBKMsb5sGJ8J4KSsWGjKmSdQeJbQJFU1IxSM9nWls7SzhBYa1dYfz+es
|
41
|
+
xTgLtrsbBTSE+8y/Tn3VlvKbBP2kIovd75EEAMIC6wpgByTV8171caGzZmYt3++G
|
42
|
+
BPbvfPw/VqRf3GgwSl1KE6gceO6frpyzOkozVIwFNbA0yvfdSr4pzgVqWMUNqdOZ
|
43
|
+
A3irLD3flxTPC21AOr7aI1Wi8uiAMSucgYSbgxfwrPw/xz6GZxBz+PPBY8zWdVtT
|
44
|
+
3oMhH0XKhksxObCZBADwErV9TAnzs3kWho846DKE8LtvXYq0E72LD3BczxNRk67g
|
45
|
+
9B4dirwOkE6lxgju+Tumtbo5vF4fIGhs+oBsAfYyLTIQN//aJ1eWp0k57q01cKSX
|
46
|
+
7PJCJSVovgUTuEwP90tuSgQ1ZVNNWMO+Tn7+RHXs77bExfqZYoWzFZmW4tq1ywQA
|
47
|
+
4/7eKvaRxMYEQInfJLf6v70J3nAMNoXMZBcBPc0ru693QwDnECPWcA4GMWCVdFbp
|
48
|
+
BW0ZvliSoqdhB/leLiyv/Fraz7vIUmQ7eJ6wAE5/ldUHmmmSk0HV+EhcEXtcawaU
|
49
|
+
zebfWYUpDiq/0BAID+avUg9KLVcL8gq7ZlRP5ev4gXE5UYkBPAQYAQgAJhYhBKrp
|
50
|
+
Mrcwwrppf/364F2jkIc+ODWLBQJeYmo4AhsMBQkDwmcAAAoJEF2jkIc+ODWLedoI
|
51
|
+
AKOh0rzNykH7uHPxqFLele2y0mv2HlYTDlZyZOnqqAa1dQeVRPwKzdWxzKuz8EJU
|
52
|
+
BeLPTuj2jNYxNSzax6TjYUGnRZES1/w1lOWHcBjM3A2XcR7sLNHQkM0NWsmL941t
|
53
|
+
Cs/wqRhwWStCju+3uQHjlopABeMsfKfaOmfwgZqXgqm6wPucObTXy61ZxAXSY7yh
|
54
|
+
nTj0jP/oidMQDddNRDwPMleebjEHX0QbcKb3Cc6dapyUxKDMkER7eQfeHXnV/aOM
|
55
|
+
Vv6yigG1jaOPJ+k3Atri5cZEFcdAqB4X30VOIHnSSIY/I/XIMnkJ6nrQclZzgRMH
|
56
|
+
3zYh8+8wYJ4+vrkTFspeu2s=
|
57
|
+
=bs3g
|
58
|
+
-----END PGP PRIVATE KEY BLOCK-----
|
@@ -0,0 +1,31 @@
|
|
1
|
+
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
2
|
+
|
3
|
+
mQENBF5iajgBCADpMbSEz+Fl4HgUxXQLTuIi01QMf/dkwVDuwNrPdVtkKKi27RS5
|
4
|
+
OOiJYYzHkSqJwdbrMf1R/Uj1S4D4zP9BPc9VmKm1tPRnk4rrhpJPE9jR9X/6RTw3
|
5
|
+
ilIqelK84WfR74yAbaQYtEF3YEOhWSCvwsf3jQuE8LBMGh+Zf8DlYeH5wBvIIF5x
|
6
|
+
y0GDktvq5+dr/szqi8rMCz3MdiouUDbyWmMKwjmegSLzS/kf8dgiEg7iChVYNSAT
|
7
|
+
SBqxRZCWADiO61vzTO8YlZj4ke+S7Lkg/d4lafVJ3Bsw89K7F79+mIZaBU1oon8v
|
8
|
+
y+AM7QAK6kGgb50vsS9QYRtYqZzK0DsaLNhVABEBAAG0M09wZW4gU291cmNlIENJ
|
9
|
+
IDx0b2J5Y2xlbXNvbitvcGVuc291cmNlY2lAZ21haWwuY29tPokBVAQTAQgAPhYh
|
10
|
+
BKrpMrcwwrppf/364F2jkIc+ODWLBQJeYmo4AhsDBQkDwmcABQsJCAcCBhUKCQgL
|
11
|
+
AgQWAgMBAh4BAheAAAoJEF2jkIc+ODWLqhUIAMSJ9l+acSPSnW0MDhjFn46cFUSC
|
12
|
+
b7YF77wBBrMj6LhQnvad5ii+ik+fld2iK0ZGg33j9b6xY7XzoLUsa/HISdLdF6xg
|
13
|
+
sMJZMhDfBRaCDDH98cbvUkR1rdimSxNMWnEd+q7BApgSItVfnuMcZDpAPY+Qnoqj
|
14
|
+
WTlM1GVK0cjD7Fb3QiAOomBsD+O3zBqBpGBZ8bnkaxu7WfQMSV0QBBoyV5pNkYPs
|
15
|
+
pHWJgIm1axwYX9383ftDDtVzAQ6YcO8x+NntEIbV7RFwyCD+AlglDfUMe4ZYxniI
|
16
|
+
jYhAWrGNVMrLsyfkSYDd9keUQGXgrWupgrH1oEPUv0RkM43KV82wqoxJJaG5AQ0E
|
17
|
+
XmJqOAEIALXw6hlF/PWRPIWIO6tJS6u5g8ndnwlmNLbhgUj0D7OjXS1mzjFIeKvm
|
18
|
+
jFBb/6klmrow8WilnbjzgNWzHsSgkQGrn5WgiC+jDhwAv2UB6afs4MySM+gD1EZc
|
19
|
+
8AAIE/asONMql/GVhPMRr4vbd7D7UdEA8YCVUc7qPRFITBPS/x2/E4lAzY/q5KZ9
|
20
|
+
uFI89Xrw02A7/Z4j+pWgOpUu/yExSu8pvFJ65aJ5t2nw48MdnYoykKKeZ/0FEzXj
|
21
|
+
s/MbJGDwVcM699TGodqMw40Kl7jIqIje7HvW18pRKgbwuzFJTA0gfAl6qWWbhaGB
|
22
|
+
m5E1zr/vTBh+vt4dLOtXD+5rG0blNlMAEQEAAYkBPAQYAQgAJhYhBKrpMrcwwrpp
|
23
|
+
f/364F2jkIc+ODWLBQJeYmo4AhsMBQkDwmcAAAoJEF2jkIc+ODWLedoIAKOh0rzN
|
24
|
+
ykH7uHPxqFLele2y0mv2HlYTDlZyZOnqqAa1dQeVRPwKzdWxzKuz8EJUBeLPTuj2
|
25
|
+
jNYxNSzax6TjYUGnRZES1/w1lOWHcBjM3A2XcR7sLNHQkM0NWsmL941tCs/wqRhw
|
26
|
+
WStCju+3uQHjlopABeMsfKfaOmfwgZqXgqm6wPucObTXy61ZxAXSY7yhnTj0jP/o
|
27
|
+
idMQDddNRDwPMleebjEHX0QbcKb3Cc6dapyUxKDMkER7eQfeHXnV/aOMVv6yigG1
|
28
|
+
jaOPJ+k3Atri5cZEFcdAqB4X30VOIHnSSIY/I/XIMnkJ6nrQclZzgRMH3zYh8+8w
|
29
|
+
YJ4+vrkTFspeu2s=
|
30
|
+
=aLlT
|
31
|
+
-----END PGP PUBLIC KEY BLOCK-----
|
@@ -0,0 +1,51 @@
|
|
1
|
+
-----BEGIN RSA PRIVATE KEY-----
|
2
|
+
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
|
51
|
+
-----END RSA PRIVATE KEY-----
|
@@ -0,0 +1 @@
|
|
1
|
+
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDLeWkZIp4nlF2PFB2r3hXBWx6EWMzZxjjmU3IfAYaahhPBT3hAyGWBURNK2kpbFgELQIwipy4BtHnUMuopjfKOQ+4VddyJVHUqDCS5uljvz3+FzqBHm3oAOPrAQr2Gi70DPBnF2XNoO2zGMusIyDQdZb7/47tAzE/Fka4CPchRYmuf7E752v0mIUA5yWAeRx2eADv+Qd/wW/xTIaR2AghOj8fYG2sipyfiBPbh8hjivGA1LFEGwAmHUqmZKUIT+JMywKPepD94VGFZObWEyfpE9J16bjy0JDZq3Kcnv0SoQfHGof/2oniccw6LFVDVfVcLtBEBCi+8tHPwL3cmiMFNuHaP9m8+4eBM0wXEjSKzJSAmwgADLUQpZ7wHXOjZemVIMxlE4afDqKwuGhVO39TdUTjzxLgltaxp5tqNxiPXlgITtyOuF/NLcayHbNdNmAtXtI+er9IquhAyVqQGVHy0nZa0HSuy03CKuRWXSkmrabMsLQyFeuynLuQOZj4vvD01223PSWpdoy+Y6ZGe3Uv0PQ7c0m+F0j99tIXkKLAfmOFsp7KlH6kmymdn6EeaaHs1eO2uZBK2vmC/hLeuioS/Uq/HlubaTnNbNvhMRFvfYh9bQEGMsCdWVoS3vLN+qwpfDzFXRayvKpAkCP7B2QpSrzyDzIphSGgSjkiOOLLhcQ== maintainers@infrablocks.io
|
data/go
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
[ -n "$GO_DEBUG" ] && set -x
|
4
|
+
set -e
|
5
|
+
|
6
|
+
project_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
7
|
+
|
8
|
+
verbose="no"
|
9
|
+
skip_checks="no"
|
10
|
+
offline="no"
|
11
|
+
|
12
|
+
missing_dependency="no"
|
13
|
+
|
14
|
+
[ -n "$GO_DEBUG" ] && verbose="yes"
|
15
|
+
[ -n "$GO_SKIP_CHECKS" ] && skip_checks="yes"
|
16
|
+
[ -n "$GO_OFFLINE" ] && offline="yes"
|
17
|
+
|
18
|
+
|
19
|
+
if [[ "$skip_checks" = "no" ]]; then
|
20
|
+
echo "Checking for system dependencies."
|
21
|
+
ruby_version="$(cat "$project_dir"/.ruby-version)"
|
22
|
+
if ! type ruby >/dev/null 2>&1 || ! ruby -v | grep -q "$ruby_version"; then
|
23
|
+
echo "This codebase requires Ruby $ruby_version."
|
24
|
+
missing_dependency="yes"
|
25
|
+
fi
|
26
|
+
|
27
|
+
if [[ "$missing_dependency" = "yes" ]]; then
|
28
|
+
echo "Please install missing dependencies to continue."
|
29
|
+
exit 1
|
30
|
+
fi
|
31
|
+
|
32
|
+
echo "All system dependencies present. Continuing."
|
33
|
+
fi
|
34
|
+
|
35
|
+
if [[ "$offline" = "no" ]]; then
|
36
|
+
echo "Installing bundler."
|
37
|
+
if [[ "$verbose" = "yes" ]]; then
|
38
|
+
gem install --no-document bundler
|
39
|
+
else
|
40
|
+
gem install --no-document bundler > /dev/null
|
41
|
+
fi
|
42
|
+
|
43
|
+
echo "Installing ruby dependencies."
|
44
|
+
if [[ "$verbose" = "yes" ]]; then
|
45
|
+
bundle install
|
46
|
+
else
|
47
|
+
bundle install > /dev/null
|
48
|
+
fi
|
49
|
+
fi
|
50
|
+
|
51
|
+
echo "Starting rake."
|
52
|
+
if [[ "$verbose" = "yes" ]]; then
|
53
|
+
time bundle exec rake --verbose "$@"
|
54
|
+
else
|
55
|
+
time bundle exec rake "$@"
|
56
|
+
fi
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'rake_easy_rsa/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'rake_easy_rsa'
|
8
|
+
spec.version = RakeEasyRSA::VERSION
|
9
|
+
spec.authors = ['Toby Clemson']
|
10
|
+
spec.email = ['tobyclemson@gmail.com']
|
11
|
+
|
12
|
+
spec.summary = 'Rake tasks for managing PKI using EasyRSA.'
|
13
|
+
spec.description = 'Rake tasks for common PKI management tasks using EasyRSA.'
|
14
|
+
spec.homepage = "https://github.com/tobyclemson/rake_easy_rsa"
|
15
|
+
spec.license = 'MIT'
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
|
+
f.match(%r{^(test|spec|features)/})
|
19
|
+
end
|
20
|
+
spec.bindir = 'exe'
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ['lib']
|
23
|
+
|
24
|
+
spec.required_ruby_version = '>= 2.6'
|
25
|
+
|
26
|
+
spec.add_dependency 'rake_dependencies', '~> 2', '< 3'
|
27
|
+
spec.add_dependency 'rake_factory', '>= 0.23', '< 1'
|
28
|
+
spec.add_dependency 'semantic', '~> 1.6.1'
|
29
|
+
|
30
|
+
spec.add_development_dependency 'bundler', '~> 2.1'
|
31
|
+
spec.add_development_dependency 'rake', '~> 13.0'
|
32
|
+
spec.add_development_dependency 'rake_circle_ci', '~> 0.3'
|
33
|
+
spec.add_development_dependency 'rake_github', '~> 0.3'
|
34
|
+
spec.add_development_dependency 'rake_ssh', '~> 0.2'
|
35
|
+
spec.add_development_dependency 'rspec', '~> 3.9'
|
36
|
+
spec.add_development_dependency 'gem-release', '~> 2.0'
|
37
|
+
spec.add_development_dependency 'activesupport', '>= 4'
|
38
|
+
spec.add_development_dependency 'fakefs', '~> 0.18'
|
39
|
+
spec.add_development_dependency 'simplecov', '~> 0.16'
|
40
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
[ -n "$DEBUG" ] && set -x
|
4
|
+
set -e
|
5
|
+
set -o pipefail
|
6
|
+
|
7
|
+
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
8
|
+
PROJECT_DIR="$( cd "$SCRIPT_DIR/../../.." && pwd )"
|
9
|
+
|
10
|
+
cd "$PROJECT_DIR"
|
11
|
+
|
12
|
+
git crypt unlock
|
13
|
+
|
14
|
+
mkdir -p ~/.gem
|
15
|
+
cp config/secrets/rubygems/credentials ~/.gem/credentials
|
16
|
+
chmod 0600 ~/.gem/credentials
|
@@ -0,0 +1,19 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
[ -n "$DEBUG" ] && set -x
|
4
|
+
set -e
|
5
|
+
set -o pipefail
|
6
|
+
|
7
|
+
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
8
|
+
PROJECT_DIR="$( cd "$SCRIPT_DIR/../../.." && pwd )"
|
9
|
+
|
10
|
+
cd "$PROJECT_DIR"
|
11
|
+
|
12
|
+
set +e
|
13
|
+
openssl version
|
14
|
+
openssl aes-256-cbc \
|
15
|
+
-d \
|
16
|
+
-md sha1 \
|
17
|
+
-in ./.circleci/gpg.private.enc \
|
18
|
+
-k "${ENCRYPTION_PASSPHRASE}" | gpg --import -
|
19
|
+
set -e
|
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
[ -n "$DEBUG" ] && set -x
|
4
|
+
set -e
|
5
|
+
set -o pipefail
|
6
|
+
|
7
|
+
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
8
|
+
PROJECT_DIR="$( cd "$SCRIPT_DIR/../../.." && pwd )"
|
9
|
+
|
10
|
+
cd "$PROJECT_DIR"
|
11
|
+
|
12
|
+
./go version:bump[pre]
|
13
|
+
./go release
|
14
|
+
|
15
|
+
git status
|
16
|
+
git push
|
@@ -0,0 +1,18 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
[ -n "$DEBUG" ] && set -x
|
4
|
+
set -e
|
5
|
+
set -o pipefail
|
6
|
+
|
7
|
+
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
8
|
+
PROJECT_DIR="$( cd "$SCRIPT_DIR/../../.." && pwd )"
|
9
|
+
|
10
|
+
cd "$PROJECT_DIR"
|
11
|
+
|
12
|
+
git pull
|
13
|
+
|
14
|
+
./go version:bump[minor]
|
15
|
+
./go release
|
16
|
+
|
17
|
+
git status
|
18
|
+
git push
|
metadata
ADDED
@@ -0,0 +1,275 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rake_easy_rsa
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0.pre.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Toby Clemson
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-04-15 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake_dependencies
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '3'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '2'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '3'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: rake_factory
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0.23'
|
40
|
+
- - "<"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '1'
|
43
|
+
type: :runtime
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '0.23'
|
50
|
+
- - "<"
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '1'
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: semantic
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - "~>"
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: 1.6.1
|
60
|
+
type: :runtime
|
61
|
+
prerelease: false
|
62
|
+
version_requirements: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - "~>"
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: 1.6.1
|
67
|
+
- !ruby/object:Gem::Dependency
|
68
|
+
name: bundler
|
69
|
+
requirement: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - "~>"
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '2.1'
|
74
|
+
type: :development
|
75
|
+
prerelease: false
|
76
|
+
version_requirements: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - "~>"
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '2.1'
|
81
|
+
- !ruby/object:Gem::Dependency
|
82
|
+
name: rake
|
83
|
+
requirement: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - "~>"
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '13.0'
|
88
|
+
type: :development
|
89
|
+
prerelease: false
|
90
|
+
version_requirements: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - "~>"
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '13.0'
|
95
|
+
- !ruby/object:Gem::Dependency
|
96
|
+
name: rake_circle_ci
|
97
|
+
requirement: !ruby/object:Gem::Requirement
|
98
|
+
requirements:
|
99
|
+
- - "~>"
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0.3'
|
102
|
+
type: :development
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - "~>"
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '0.3'
|
109
|
+
- !ruby/object:Gem::Dependency
|
110
|
+
name: rake_github
|
111
|
+
requirement: !ruby/object:Gem::Requirement
|
112
|
+
requirements:
|
113
|
+
- - "~>"
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '0.3'
|
116
|
+
type: :development
|
117
|
+
prerelease: false
|
118
|
+
version_requirements: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - "~>"
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '0.3'
|
123
|
+
- !ruby/object:Gem::Dependency
|
124
|
+
name: rake_ssh
|
125
|
+
requirement: !ruby/object:Gem::Requirement
|
126
|
+
requirements:
|
127
|
+
- - "~>"
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '0.2'
|
130
|
+
type: :development
|
131
|
+
prerelease: false
|
132
|
+
version_requirements: !ruby/object:Gem::Requirement
|
133
|
+
requirements:
|
134
|
+
- - "~>"
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
version: '0.2'
|
137
|
+
- !ruby/object:Gem::Dependency
|
138
|
+
name: rspec
|
139
|
+
requirement: !ruby/object:Gem::Requirement
|
140
|
+
requirements:
|
141
|
+
- - "~>"
|
142
|
+
- !ruby/object:Gem::Version
|
143
|
+
version: '3.9'
|
144
|
+
type: :development
|
145
|
+
prerelease: false
|
146
|
+
version_requirements: !ruby/object:Gem::Requirement
|
147
|
+
requirements:
|
148
|
+
- - "~>"
|
149
|
+
- !ruby/object:Gem::Version
|
150
|
+
version: '3.9'
|
151
|
+
- !ruby/object:Gem::Dependency
|
152
|
+
name: gem-release
|
153
|
+
requirement: !ruby/object:Gem::Requirement
|
154
|
+
requirements:
|
155
|
+
- - "~>"
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: '2.0'
|
158
|
+
type: :development
|
159
|
+
prerelease: false
|
160
|
+
version_requirements: !ruby/object:Gem::Requirement
|
161
|
+
requirements:
|
162
|
+
- - "~>"
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
version: '2.0'
|
165
|
+
- !ruby/object:Gem::Dependency
|
166
|
+
name: activesupport
|
167
|
+
requirement: !ruby/object:Gem::Requirement
|
168
|
+
requirements:
|
169
|
+
- - ">="
|
170
|
+
- !ruby/object:Gem::Version
|
171
|
+
version: '4'
|
172
|
+
type: :development
|
173
|
+
prerelease: false
|
174
|
+
version_requirements: !ruby/object:Gem::Requirement
|
175
|
+
requirements:
|
176
|
+
- - ">="
|
177
|
+
- !ruby/object:Gem::Version
|
178
|
+
version: '4'
|
179
|
+
- !ruby/object:Gem::Dependency
|
180
|
+
name: fakefs
|
181
|
+
requirement: !ruby/object:Gem::Requirement
|
182
|
+
requirements:
|
183
|
+
- - "~>"
|
184
|
+
- !ruby/object:Gem::Version
|
185
|
+
version: '0.18'
|
186
|
+
type: :development
|
187
|
+
prerelease: false
|
188
|
+
version_requirements: !ruby/object:Gem::Requirement
|
189
|
+
requirements:
|
190
|
+
- - "~>"
|
191
|
+
- !ruby/object:Gem::Version
|
192
|
+
version: '0.18'
|
193
|
+
- !ruby/object:Gem::Dependency
|
194
|
+
name: simplecov
|
195
|
+
requirement: !ruby/object:Gem::Requirement
|
196
|
+
requirements:
|
197
|
+
- - "~>"
|
198
|
+
- !ruby/object:Gem::Version
|
199
|
+
version: '0.16'
|
200
|
+
type: :development
|
201
|
+
prerelease: false
|
202
|
+
version_requirements: !ruby/object:Gem::Requirement
|
203
|
+
requirements:
|
204
|
+
- - "~>"
|
205
|
+
- !ruby/object:Gem::Version
|
206
|
+
version: '0.16'
|
207
|
+
description: Rake tasks for common PKI management tasks using EasyRSA.
|
208
|
+
email:
|
209
|
+
- tobyclemson@gmail.com
|
210
|
+
executables: []
|
211
|
+
extensions: []
|
212
|
+
extra_rdoc_files: []
|
213
|
+
files:
|
214
|
+
- ".circleci/config.yml"
|
215
|
+
- ".circleci/gpg.private.enc"
|
216
|
+
- ".envrc"
|
217
|
+
- ".git-crypt/.gitattributes"
|
218
|
+
- ".git-crypt/keys/default/0/41D2606F66C3FF28874362B61A16916844CE9D82.gpg"
|
219
|
+
- ".git-crypt/keys/default/0/AAE932B730C2BA697FFDFAE05DA390873E38358B.gpg"
|
220
|
+
- ".gitattributes"
|
221
|
+
- ".gitignore"
|
222
|
+
- ".rspec"
|
223
|
+
- ".ruby-version"
|
224
|
+
- CODE_OF_CONDUCT.md
|
225
|
+
- Gemfile
|
226
|
+
- Gemfile.lock
|
227
|
+
- LICENSE.txt
|
228
|
+
- README.md
|
229
|
+
- Rakefile
|
230
|
+
- bin/console
|
231
|
+
- bin/setup
|
232
|
+
- config/secrets/.unlocked
|
233
|
+
- config/secrets/ci/encryption.passphrase
|
234
|
+
- config/secrets/ci/gpg.private
|
235
|
+
- config/secrets/ci/gpg.public
|
236
|
+
- config/secrets/ci/ssh.private
|
237
|
+
- config/secrets/ci/ssh.public
|
238
|
+
- config/secrets/circle_ci/config.yaml
|
239
|
+
- config/secrets/github/config.yaml
|
240
|
+
- config/secrets/rubygems/credentials
|
241
|
+
- go
|
242
|
+
- lib/rake_easy_rsa.rb
|
243
|
+
- lib/rake_easy_rsa/version.rb
|
244
|
+
- rake_easy_rsa.gemspec
|
245
|
+
- scripts/ci/common/configure-git.sh
|
246
|
+
- scripts/ci/common/configure-rubygems.sh
|
247
|
+
- scripts/ci/common/install-git-crypt.sh
|
248
|
+
- scripts/ci/common/install-gpg-key.sh
|
249
|
+
- scripts/ci/steps/prerelease.sh
|
250
|
+
- scripts/ci/steps/release.sh
|
251
|
+
- scripts/ci/steps/test.sh
|
252
|
+
homepage: https://github.com/tobyclemson/rake_easy_rsa
|
253
|
+
licenses:
|
254
|
+
- MIT
|
255
|
+
metadata: {}
|
256
|
+
post_install_message:
|
257
|
+
rdoc_options: []
|
258
|
+
require_paths:
|
259
|
+
- lib
|
260
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
261
|
+
requirements:
|
262
|
+
- - ">="
|
263
|
+
- !ruby/object:Gem::Version
|
264
|
+
version: '2.6'
|
265
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
266
|
+
requirements:
|
267
|
+
- - ">"
|
268
|
+
- !ruby/object:Gem::Version
|
269
|
+
version: 1.3.1
|
270
|
+
requirements: []
|
271
|
+
rubygems_version: 3.0.1
|
272
|
+
signing_key:
|
273
|
+
specification_version: 4
|
274
|
+
summary: Rake tasks for managing PKI using EasyRSA.
|
275
|
+
test_files: []
|