rubion 0.3.20 → 0.3.21
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 +12 -0
- data/lib/rubion/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a1749bac065245df6d22c47b114e27ec661e16be0d814a58b189b8c03962ba3
|
|
4
|
+
data.tar.gz: 9d66043ccda8cc36d608798144a009f0dc2cc5672bf7f34d7fe87c5d584e996f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac3763e3bdad56356013230a39654581e7a94613343019a68a9e38a038a849c4f48d434f42f1d35e13c81d7f2c5157d38a0cb6449fd3cdbf9ba6823499eaea74
|
|
7
|
+
data.tar.gz: '083e44af51b763b583c40d02645d2ef70e6657f1a51aa078566c49b0f6e0de734b465d5d5cf228f8beddb29da75183288635f77054ffdefc616b708fc0de172d'
|
data/README.md
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
- 📦 **Package Versions**: Identifies outdated NPM/JavaScript packages with release dates and version counts
|
|
13
13
|
- 🎯 **Direct Dependencies**: Highlights direct dependencies (from `Gemfile`/`package.json`) in bold text
|
|
14
14
|
- 🔍 **Filtering**: Option to show only direct dependencies with `--exclude-dependencies` flag
|
|
15
|
+
- 🛡️ **Vulnerabilities Only Mode**: Option to show only vulnerability tables (and skip version/outdated checks) with `--vulnerabilities-only`
|
|
15
16
|
- 📊 **Sorting**: Sort results by any column (Name, Current, Date, Latest, Behind By(Time), Behind By(Versions))
|
|
16
17
|
- 📊 **Beautiful Reports**: Organized table output with severity icons (🔴 Critical, 🟠 High, 🟡 Medium, 🟢 Low, ⚪ Unknown)
|
|
17
18
|
- 🚀 **Fast & Efficient**: Parallel API processing (10 concurrent threads) for quick results
|
|
@@ -112,6 +113,17 @@ rubion scan --exclude-dependencies
|
|
|
112
113
|
|
|
113
114
|
Direct dependencies are automatically highlighted in **bold text** in the output.
|
|
114
115
|
|
|
116
|
+
### Vulnerabilities-Only Mode
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
# Show only vulnerability tables (no version/outdated sections)
|
|
120
|
+
rubion scan --vulnerabilities-only
|
|
121
|
+
|
|
122
|
+
# Combine with other filters
|
|
123
|
+
rubion scan --gems-only --vulnerabilities-only
|
|
124
|
+
rubion scan --packages-only --vulnerabilities-only
|
|
125
|
+
```
|
|
126
|
+
|
|
115
127
|
### View Help
|
|
116
128
|
|
|
117
129
|
```bash
|
data/lib/rubion/version.rb
CHANGED