iron_dome 0.1.0 → 0.1.1
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/README.md +3 -3
- data/iron_dome.gemspec +1 -1
- data/lib/iron_dome/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e36094bedecbd10da8dbb74e4c51854a62b5105aa637e9fc0f3d2b48f485889
|
|
4
|
+
data.tar.gz: 4674ab0f953f419fa732bea2020eae7e56eeda47a61239b228c2f1a05042e8bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6186fbb051c06b6ebefdf6524237d3dad64c901400fbcca03dc44db76f99c2401af8489e55a413a75028522ebd123b288693e0e5f89b9fea5defe5e1ccc47671
|
|
7
|
+
data.tar.gz: 404d543ebfca0805f5e92ca410840212abb3163af733d24d9de9408490cde2de6d2d1bba105020ac3e281dea381ad424a7cf4127c707052d58fbee176f706415
|
data/README.md
CHANGED
|
@@ -4,20 +4,20 @@
|
|
|
4
4
|
A SCA scanner for ruby applications, read the gemfile.lock verify vulnerabilities use osv database.
|
|
5
5
|
|
|
6
6
|
## Installation
|
|
7
|
-
On root dir of the gem run:
|
|
8
7
|
|
|
9
|
-
$ gem build
|
|
10
8
|
$ gem install iron_dome
|
|
11
9
|
|
|
12
10
|
## Usage
|
|
13
11
|
|
|
14
12
|
After install the gem just run the follow command on main directory of your application
|
|
15
|
-
this directory must have the Gemfile.lock
|
|
13
|
+
this directory must have the Gemfile.lock, you can also run on a ci/cd pipeline.
|
|
16
14
|
|
|
17
15
|
$ iron_dome
|
|
18
16
|
|
|
19
17
|
## Output Example
|
|
18
|
+
|
|
20
19
|

|
|
20
|
+
|
|
21
21
|
## Development
|
|
22
22
|
|
|
23
23
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/iron_dome.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.authors = ["Jose Augusto"]
|
|
9
9
|
spec.email = ["joseaugusto.881@outlook.com"]
|
|
10
10
|
|
|
11
|
-
spec.summary = "A vulnerability scanner for dependencies
|
|
11
|
+
spec.summary = "A vulnerability scanner for ruby projects dependencies"
|
|
12
12
|
spec.homepage = "https://github.com/JAugusto42/iron_dome"
|
|
13
13
|
spec.license = "MIT"
|
|
14
14
|
spec.required_ruby_version = ">= 2.6.0"
|
data/lib/iron_dome/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: iron_dome
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jose Augusto
|
|
@@ -116,5 +116,5 @@ requirements: []
|
|
|
116
116
|
rubygems_version: 3.5.6
|
|
117
117
|
signing_key:
|
|
118
118
|
specification_version: 4
|
|
119
|
-
summary: A vulnerability scanner for dependencies
|
|
119
|
+
summary: A vulnerability scanner for ruby projects dependencies
|
|
120
120
|
test_files: []
|