stackharbinger 0.4.0 → 1.0.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 +110 -34
- data/docs/index.html +58 -21
- data/lib/harbinger/analyzers/go_detector.rb +86 -0
- data/lib/harbinger/analyzers/node_detector.rb +109 -0
- data/lib/harbinger/analyzers/python_detector.rb +110 -0
- data/lib/harbinger/analyzers/rails_analyzer.rb +5 -1
- data/lib/harbinger/analyzers/rust_detector.rb +116 -0
- data/lib/harbinger/cli.rb +380 -256
- data/lib/harbinger/exporters/base_exporter.rb +5 -2
- data/lib/harbinger/version.rb +1 -1
- metadata +11 -8
|
@@ -7,14 +7,17 @@ module Harbinger
|
|
|
7
7
|
module Exporters
|
|
8
8
|
# Base class for exporters that transform project data into various formats
|
|
9
9
|
class BaseExporter
|
|
10
|
-
COMPONENTS = %w[ruby rails postgres mysql redis mongo].freeze
|
|
10
|
+
COMPONENTS = %w[ruby rails postgres mysql redis mongo python nodejs rust].freeze
|
|
11
11
|
PRODUCT_NAMES = {
|
|
12
12
|
"ruby" => "ruby",
|
|
13
13
|
"rails" => "rails",
|
|
14
14
|
"postgres" => "postgresql",
|
|
15
15
|
"mysql" => "mysql",
|
|
16
16
|
"redis" => "redis",
|
|
17
|
-
"mongo" => "mongodb"
|
|
17
|
+
"mongo" => "mongodb",
|
|
18
|
+
"python" => "python",
|
|
19
|
+
"nodejs" => "nodejs",
|
|
20
|
+
"rust" => "rust"
|
|
18
21
|
}.freeze
|
|
19
22
|
|
|
20
23
|
def initialize(projects, fetcher: nil)
|
data/lib/harbinger/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stackharbinger
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rich Dabrowski
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: thor
|
|
@@ -80,8 +79,10 @@ dependencies:
|
|
|
80
79
|
- - "~>"
|
|
81
80
|
- !ruby/object:Gem::Version
|
|
82
81
|
version: '0.21'
|
|
83
|
-
description: Harbinger
|
|
84
|
-
|
|
82
|
+
description: Harbinger tracks EOL dates for Ruby, Rails, Python, Node.js, Rust, Go,
|
|
83
|
+
PostgreSQL, MySQL, Redis, and MongoDB. Auto-detects versions from your projects
|
|
84
|
+
and alerts you before support ends. Features ecosystem-grouped dashboard, JSON/CSV
|
|
85
|
+
export, and bulk scanning.
|
|
85
86
|
email:
|
|
86
87
|
- engineering@richd.net
|
|
87
88
|
executables:
|
|
@@ -98,12 +99,16 @@ files:
|
|
|
98
99
|
- lib/harbinger.rb
|
|
99
100
|
- lib/harbinger/analyzers/database_detector.rb
|
|
100
101
|
- lib/harbinger/analyzers/docker_compose_detector.rb
|
|
102
|
+
- lib/harbinger/analyzers/go_detector.rb
|
|
101
103
|
- lib/harbinger/analyzers/mongo_detector.rb
|
|
102
104
|
- lib/harbinger/analyzers/mysql_detector.rb
|
|
105
|
+
- lib/harbinger/analyzers/node_detector.rb
|
|
103
106
|
- lib/harbinger/analyzers/postgres_detector.rb
|
|
107
|
+
- lib/harbinger/analyzers/python_detector.rb
|
|
104
108
|
- lib/harbinger/analyzers/rails_analyzer.rb
|
|
105
109
|
- lib/harbinger/analyzers/redis_detector.rb
|
|
106
110
|
- lib/harbinger/analyzers/ruby_detector.rb
|
|
111
|
+
- lib/harbinger/analyzers/rust_detector.rb
|
|
107
112
|
- lib/harbinger/cli.rb
|
|
108
113
|
- lib/harbinger/config_manager.rb
|
|
109
114
|
- lib/harbinger/eol_fetcher.rb
|
|
@@ -120,7 +125,6 @@ metadata:
|
|
|
120
125
|
homepage_uri: https://stackharbinger.com
|
|
121
126
|
source_code_uri: https://github.com/RichD/harbinger
|
|
122
127
|
changelog_uri: https://github.com/RichD/harbinger/blob/main/CHANGELOG.md
|
|
123
|
-
post_install_message:
|
|
124
128
|
rdoc_options: []
|
|
125
129
|
require_paths:
|
|
126
130
|
- lib
|
|
@@ -135,8 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
135
139
|
- !ruby/object:Gem::Version
|
|
136
140
|
version: '0'
|
|
137
141
|
requirements: []
|
|
138
|
-
rubygems_version: 3.
|
|
139
|
-
signing_key:
|
|
142
|
+
rubygems_version: 3.7.2
|
|
140
143
|
specification_version: 4
|
|
141
144
|
summary: Track End-of-Life dates for your tech stack and stay ahead of deprecations
|
|
142
145
|
test_files: []
|