Sha256: 4e057d627e806118fb9e29450062c1116d5db3b8bfa45a878ee36f1b86f4d7aa

Contents?: true

Size: 373 Bytes

Versions: 5

Compression:

Stored size: 373 Bytes

Contents

require 'json'

module Bibliothecary
  module Parsers
    class Haxelib
      include Bibliothecary::Analyser
      extend Bibliothecary::MultiParsers::JSONRuntime

      def self.mapping
        {
          match_filename("haxelib.json") => {
            kind: 'manifest',
            parser: :parse_json_runtime_manifest
          }
        }
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bibliothecary-8.2.1 lib/bibliothecary/parsers/haxelib.rb
bibliothecary-8.2.0 lib/bibliothecary/parsers/haxelib.rb
bibliothecary-8.1.1 lib/bibliothecary/parsers/haxelib.rb
bibliothecary-8.1.0 lib/bibliothecary/parsers/haxelib.rb
bibliothecary-8.0.0 lib/bibliothecary/parsers/haxelib.rb