Sha256: 7e6fe721d3a3715864748c28c02afa405e8c999a3b55b270a179f7a75ed17798

Contents?: true

Size: 514 Bytes

Versions: 56

Compression:

Stored size: 514 Bytes

Contents

require 'json'

module Bibliothecary
  module Parsers
    class Bower
      include Bibliothecary::Analyser

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

      def self.parse_manifest(manifest)
        json = JSON.parse(manifest)
        map_dependencies(json, 'dependencies', 'runtime') +
        map_dependencies(json, 'devDependencies', 'development')
      end
    end
  end
end

Version data entries

56 entries across 56 versions & 1 rubygems

Version Path
bibliothecary-7.3.6 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.3.5 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.3.4 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.3.3 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.3.2 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.3.1 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.3.0 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.2.1 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.2.0 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.1.5 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.1.4 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.1.3 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.1.2 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.1.1 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.1.0 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.0.2 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.0.1 lib/bibliothecary/parsers/bower.rb
bibliothecary-7.0.0 lib/bibliothecary/parsers/bower.rb
bibliothecary-6.12.3 lib/bibliothecary/parsers/bower.rb
bibliothecary-6.12.2 lib/bibliothecary/parsers/bower.rb