Class: Bibliothecary::Parsers::Cargo
- Inherits:
-
Object
- Object
- Bibliothecary::Parsers::Cargo
show all
- Includes:
- Analyser
- Defined in:
- lib/bibliothecary/parsers/cargo.rb
Class Method Summary
collapse
Methods included from Analyser
create_analysis, create_error_analysis, included
Class Method Details
.mapping ⇒ Object
8
9
10
11
12
13
14
15
16
17
18
19
|
# File 'lib/bibliothecary/parsers/cargo.rb', line 8
def self.mapping
{
match_filename("Cargo.toml") => {
kind: 'manifest',
parser: :parse_manifest
},
match_filename("Cargo.lock") => {
kind: 'lockfile',
parser: :parse_lockfile
}
}
end
|
.parse_lockfile(file_contents) ⇒ Object
36
37
38
39
40
41
42
43
44
45
46
47
|
# File 'lib/bibliothecary/parsers/cargo.rb', line 36
def self.parse_lockfile(file_contents)
manifest = TomlRB.parse(file_contents)
manifest.fetch('package',[]).map do |dependency|
next if not dependency['source'] or not dependency['source'].start_with?('registry+')
{
name: dependency['name'],
requirement: dependency['version'],
type: 'runtime'
}
end
.compact
end
|
.parse_manifest(file_contents) ⇒ Object
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# File 'lib/bibliothecary/parsers/cargo.rb', line 21
def self.parse_manifest(file_contents)
manifest = TomlRB.parse(file_contents)
manifest.fetch('dependencies', []).map do |name, requirement|
if requirement.respond_to?(:fetch)
requirement = requirement['version'] or next
end
{
name: name,
requirement: requirement,
type: 'runtime'
}
end
.compact
end
|