Sha256: a83c763650c1e61100b5525995aec48b5b3d54852f561dd062ff30724a8ecae2
Contents?: true
Size: 476 Bytes
Versions: 3
Compression:
Stored size: 476 Bytes
Contents
# frozen_string_literal: true require "json" module Bibliothecary module Parsers class Meteor include Bibliothecary::Analyser extend Bibliothecary::MultiParsers::JSONRuntime def self.mapping { match_filename("versions.json") => { kind: "manifest", parser: :parse_json_runtime_manifest, }, } end add_multi_parser(Bibliothecary::MultiParsers::DependenciesCSV) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
bibliothecary-12.1.2 | lib/bibliothecary/parsers/meteor.rb |
bibliothecary-12.1.1 | lib/bibliothecary/parsers/meteor.rb |
bibliothecary-12.1.0 | lib/bibliothecary/parsers/meteor.rb |