aws_security_viz 0.2.2 → 0.2.3.pre.alpha.pre.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rubygem.yml +1 -2
- data/CHANGELOG.md +2 -1
- data/README.md +1 -1
- data/aws_security_viz.gemspec +1 -1
- data/lib/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f62fc5282ab89b1a58f57474bd0df2b5fdae0842868a9e490da5c79e3bfc7a1b
|
4
|
+
data.tar.gz: dfc80be0987a33e7e66c7e0b344c917858afa246898bbab7beac50bdf42deb46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf193fa8a6e74b04d85df278f4f60f1e953f98ee33e53cc56caa57b4a343896ff10e82c70c40311a557ca3e34f9ed82289e408812e0879b9baa95fd9ab162ed1
|
7
|
+
data.tar.gz: '039d1a98ebdf234f92f4b7f5234301a20a304db7a3076a04fba1e0806e0e03886dad065ef02c89678f1915a5b2c1d33ffc6266b09d6845460c97654bd48e7507'
|
@@ -3,8 +3,6 @@ name: Ruby Gem
|
|
3
3
|
on:
|
4
4
|
push:
|
5
5
|
branches: [master]
|
6
|
-
pull_request:
|
7
|
-
branches: [master]
|
8
6
|
|
9
7
|
jobs:
|
10
8
|
build:
|
@@ -28,3 +26,4 @@ jobs:
|
|
28
26
|
gem push *.gem
|
29
27
|
env:
|
30
28
|
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|
29
|
+
ALPHA_BUILD_NUMBER: "${{github.run_number}}"
|
data/CHANGELOG.md
CHANGED
@@ -2,9 +2,10 @@
|
|
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
|
-
## [
|
5
|
+
## [0.2.2] - 2021-01-05
|
6
6
|
### Added
|
7
7
|
- --version option which prints aws-security-viz version
|
8
|
+
- Switchover to github actions from travis
|
8
9
|
|
9
10
|
## [0.2.1] - 2020-06-20
|
10
11
|
### Added
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
aws-security-viz -- A tool to visualize aws security groups
|
2
2
|
============================================================
|
3
3
|
[![Build Status](https://secure.travis-ci.org/anaynayak/aws-security-viz.png)](http://travis-ci.org/anaynayak/aws-security-viz)
|
4
|
-
[![Gem Version](https://
|
4
|
+
[![Gem Version](https://github.com/anaynayak/aws-security-viz/workflows/Ruby/badge.svg)](https://github.com/anaynayak/aws-security-viz/actions?query=workflow%3ARuby)
|
5
5
|
[![License](https://img.shields.io/github/license/anaynayak/aws-security-viz.svg?maxAge=2592000)]()
|
6
6
|
[![Code Climate](https://codeclimate.com/github/anaynayak/aws-security-viz.png)](https://codeclimate.com/github/anaynayak/aws-security-viz)
|
7
7
|
[![Docker image](https://images.microbadger.com/badges/image/anay/aws-security-viz.svg)](https://microbadger.com/images/anay/aws-security-viz)
|
data/aws_security_viz.gemspec
CHANGED
@@ -5,7 +5,7 @@ require 'version'
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = 'aws_security_viz'
|
7
7
|
s.version = AwsSecurityViz::VERSION
|
8
|
-
s.version = "#{s.version}-alpha-#{ENV['
|
8
|
+
s.version = "#{s.version}-alpha-#{ENV['ALPHA_BUILD_NUMBER']}" if ENV['ALPHA_BUILD_NUMBER']
|
9
9
|
s.date = Time.now.strftime('%Y-%m-%d')
|
10
10
|
s.summary = 'Visualize your aws security groups'
|
11
11
|
s.description = 'Provides a quick mechanism to visualize your EC2 security groups in multiple formats'
|
data/lib/version.rb
CHANGED
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.
|
4
|
+
version: 0.2.3.pre.alpha.pre.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Anay Nayak
|
@@ -223,9 +223,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
223
223
|
version: 2.0.0
|
224
224
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
225
225
|
requirements:
|
226
|
-
- - "
|
226
|
+
- - ">"
|
227
227
|
- !ruby/object:Gem::Version
|
228
|
-
version:
|
228
|
+
version: 1.3.1
|
229
229
|
requirements: []
|
230
230
|
rubygems_version: 3.0.3
|
231
231
|
signing_key:
|