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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d4d4d6d7fff4856665d0d3a3ede94144c6238e8ea6d3debfc3a9e4937496479
4
- data.tar.gz: 0bc7930b7c19ec46d82e7d2115ba8c93ecd158227a066aee9482252af8a6e575
3
+ metadata.gz: e84d7363b62880513feaf761d59f6b3493508f3374c635516a77e0f8fb8c3fd5
4
+ data.tar.gz: 7900e92ceae91e788475fa339134324e32cb2693c43736c7487a33ea5b36e6e2
5
5
  SHA512:
6
- metadata.gz: 8c21b0b3e9d763572cf934ba1739615c7200edcc6b2e22199f1d473c28c8c74bf49f7e423416b6e0a263cbca140a9b2ca45eeb9ad554872664ba31f32f8a5757
7
- data.tar.gz: ef9c96d1186dea49e5aebdfdaed9bcf477e1fc0418f9bfdd74232afce7a91af32343680fc8443e29fc5ae75248fbdf3549dfbd7e1295034150e2b0e1c56a6cd6
6
+ metadata.gz: 10730b079dd2b29ed5b64918d6d632bcb3c5bea74e6bc17d2d5842ed07c18f0da5f23eaad45e19843e377432ccc1683e70c76fb0e09441e88aec1cadc33d8bb9
7
+ data.tar.gz: 2a4953290bf7558bde5e6e112ecdfa9efc1eff047dbc3ec79507b65fd3795bb6b43a015a59d6bbb22be2590b06c57e8562186fe4bb89e0c5cbb171abd2b317e4
@@ -2,7 +2,7 @@ name: Ruby Gem
2
2
 
3
3
  on:
4
4
  push:
5
- branches: [master]
5
+ branches: [main]
6
6
 
7
7
  jobs:
8
8
  build:
@@ -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
- ![](https://github.com/anaynayak/aws-security-viz/raw/master/images/sample.png)
160
+ ![](https://github.com/anaynayak/aws-security-viz/raw/main/images/sample.png)
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.11
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