aws_security_viz 0.2.3.pre.alpha.pre.11 → 0.2.3.pre.alpha.pre.12
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/.github/workflows/rubygem.yml +1 -1
- data/.github/workflows/rubygem_release.yml +27 -0
- data/CHANGELOG.md +5 -0
- data/README.md +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e84d7363b62880513feaf761d59f6b3493508f3374c635516a77e0f8fb8c3fd5
|
|
4
|
+
data.tar.gz: 7900e92ceae91e788475fa339134324e32cb2693c43736c7487a33ea5b36e6e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 10730b079dd2b29ed5b64918d6d632bcb3c5bea74e6bc17d2d5842ed07c18f0da5f23eaad45e19843e377432ccc1683e70c76fb0e09441e88aec1cadc33d8bb9
|
|
7
|
+
data.tar.gz: 2a4953290bf7558bde5e6e112ecdfa9efc1eff047dbc3ec79507b65fd3795bb6b43a015a59d6bbb22be2590b06c57e8562186fe4bb89e0c5cbb171abd2b317e4
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
name: Ruby Gem Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
build:
|
|
8
|
+
name: Build + Publish
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v2
|
|
13
|
+
- name: Set up Ruby 2.6
|
|
14
|
+
uses: actions/setup-ruby@v1
|
|
15
|
+
with:
|
|
16
|
+
ruby-version: 2.6.x
|
|
17
|
+
|
|
18
|
+
- name: Publish to RubyGems
|
|
19
|
+
run: |
|
|
20
|
+
mkdir -p $HOME/.gem
|
|
21
|
+
touch $HOME/.gem/credentials
|
|
22
|
+
chmod 0600 $HOME/.gem/credentials
|
|
23
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
|
24
|
+
gem build *.gemspec
|
|
25
|
+
gem push *.gem
|
|
26
|
+
env:
|
|
27
|
+
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
4
4
|
|
|
5
|
+
## [0.2.3] - 2021-07-03
|
|
6
|
+
### Added
|
|
7
|
+
- Support for Ruby v3
|
|
8
|
+
- Matrix builds for Ruby v2.5 to v3.0
|
|
9
|
+
|
|
5
10
|
## [0.2.2] - 2021-01-05
|
|
6
11
|
### Added
|
|
7
12
|
- --version option which prints aws-security-viz version
|
data/README.md
CHANGED
|
@@ -157,7 +157,7 @@ Execute the following command to generate the json. You will need [aws-cli](http
|
|
|
157
157
|
|
|
158
158
|
#### Graphviz export
|
|
159
159
|
|
|
160
|
-

|
|
161
161
|
|
|
162
162
|
#### Navigator view (useful with very large number of nodes)
|
|
163
163
|
Via navigator renderer `aws_security_viz -a your_aws_key -s your_aws_secret_key -f aws.json --renderer navigator`
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws_security_viz
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.3.pre.alpha.pre.
|
|
4
|
+
version: 0.2.3.pre.alpha.pre.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anay Nayak
|
|
@@ -184,6 +184,7 @@ files:
|
|
|
184
184
|
- ".editorconfig"
|
|
185
185
|
- ".github/workflows/ruby.yml"
|
|
186
186
|
- ".github/workflows/rubygem.yml"
|
|
187
|
+
- ".github/workflows/rubygem_release.yml"
|
|
187
188
|
- ".gitignore"
|
|
188
189
|
- CHANGELOG.md
|
|
189
190
|
- CODE_OF_CONDUCT.md
|