Class: Bibliothecary::Parsers::Cargo
- Inherits:
-
Object
- Object
- Bibliothecary::Parsers::Cargo
- Includes:
- Analyser
- Defined in:
- lib/bibliothecary/parsers/cargo.rb
Class Method Summary collapse
- .mapping ⇒ Object
-
.parse_lockfile(file_contents, options: {}) ⇒ Object
rubocop:disable Lint/UnusedMethodArgument.
-
.parse_manifest(file_contents, options: {}) ⇒ Object
rubocop:disable Lint/UnusedMethodArgument.
Methods included from Analyser
create_analysis, create_error_analysis, included
Class Method Details
.mapping ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/bibliothecary/parsers/cargo.rb', line 6 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, options: {}) ⇒ Object
rubocop:disable Lint/UnusedMethodArgument
44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/bibliothecary/parsers/cargo.rb', line 44 def self.parse_lockfile(file_contents, options: {}) # rubocop:disable Lint/UnusedMethodArgument 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, options: {}) ⇒ Object
rubocop:disable Lint/UnusedMethodArgument
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/bibliothecary/parsers/cargo.rb', line 23 def self.parse_manifest(file_contents, options: {}) # rubocop:disable Lint/UnusedMethodArgument manifest = Tomlrb.parse(file_contents) parsed_dependencies = [] manifest.fetch_values("dependencies", "dev-dependencies").each_with_index do |deps, index| parsed_dependencies << deps.map do |name, requirement| if requirement.respond_to?(:fetch) requirement = requirement["version"] or next end { name: name, requirement: requirement, type: index.zero? ? "runtime" : "development", } end end parsed_dependencies.flatten.compact end |