Sha256: ad6923faf927aa6673fa0ad8105f3927788a6870b6ff75b7caaf824c407cd717

Contents?: true

Size: 325 Bytes

Versions: 3

Compression:

Stored size: 325 Bytes

Contents

require 'json'

module Bibliothecary
  module Parsers
    class Haxelib
      include Bibliothecary::Analyser

      def self.mapping
        {
          /^haxelib\.json$|.*\/haxelib\.json$/ => {
            kind: 'manifest',
            parser: :parse_json_runtime_manifest
          }
        }
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bibliothecary-6.3.2 lib/bibliothecary/parsers/haxelib.rb
bibliothecary-6.3.1 lib/bibliothecary/parsers/haxelib.rb
bibliothecary-6.3.0 lib/bibliothecary/parsers/haxelib.rb