stackharbinger 0.4.0 → 1.0.0
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 +64 -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 +365 -252
- data/lib/harbinger/exporters/base_exporter.rb +5 -2
- data/lib/harbinger/version.rb +1 -1
- metadata +7 -6
|
@@ -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.0
|
|
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
|
|
@@ -98,12 +97,16 @@ files:
|
|
|
98
97
|
- lib/harbinger.rb
|
|
99
98
|
- lib/harbinger/analyzers/database_detector.rb
|
|
100
99
|
- lib/harbinger/analyzers/docker_compose_detector.rb
|
|
100
|
+
- lib/harbinger/analyzers/go_detector.rb
|
|
101
101
|
- lib/harbinger/analyzers/mongo_detector.rb
|
|
102
102
|
- lib/harbinger/analyzers/mysql_detector.rb
|
|
103
|
+
- lib/harbinger/analyzers/node_detector.rb
|
|
103
104
|
- lib/harbinger/analyzers/postgres_detector.rb
|
|
105
|
+
- lib/harbinger/analyzers/python_detector.rb
|
|
104
106
|
- lib/harbinger/analyzers/rails_analyzer.rb
|
|
105
107
|
- lib/harbinger/analyzers/redis_detector.rb
|
|
106
108
|
- lib/harbinger/analyzers/ruby_detector.rb
|
|
109
|
+
- lib/harbinger/analyzers/rust_detector.rb
|
|
107
110
|
- lib/harbinger/cli.rb
|
|
108
111
|
- lib/harbinger/config_manager.rb
|
|
109
112
|
- lib/harbinger/eol_fetcher.rb
|
|
@@ -120,7 +123,6 @@ metadata:
|
|
|
120
123
|
homepage_uri: https://stackharbinger.com
|
|
121
124
|
source_code_uri: https://github.com/RichD/harbinger
|
|
122
125
|
changelog_uri: https://github.com/RichD/harbinger/blob/main/CHANGELOG.md
|
|
123
|
-
post_install_message:
|
|
124
126
|
rdoc_options: []
|
|
125
127
|
require_paths:
|
|
126
128
|
- lib
|
|
@@ -135,8 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
135
137
|
- !ruby/object:Gem::Version
|
|
136
138
|
version: '0'
|
|
137
139
|
requirements: []
|
|
138
|
-
rubygems_version: 3.
|
|
139
|
-
signing_key:
|
|
140
|
+
rubygems_version: 3.7.2
|
|
140
141
|
specification_version: 4
|
|
141
142
|
summary: Track End-of-Life dates for your tech stack and stay ahead of deprecations
|
|
142
143
|
test_files: []
|