Class: Bibliothecary::Parsers::Bower
- Inherits:
-
Object
- Object
- Bibliothecary::Parsers::Bower
- Includes:
- Analyser
- Defined in:
- lib/bibliothecary/parsers/bower.rb
Class Method Summary collapse
Methods included from Analyser
Class Method Details
.mapping ⇒ Object
8 9 10 11 12 13 14 15 |
# File 'lib/bibliothecary/parsers/bower.rb', line 8 def self.mapping { /^bower\.json$/ => { kind: 'manifest', parser: :parse_manifest } } end |
.parse_manifest(manifest) ⇒ Object
17 18 19 20 21 |
# File 'lib/bibliothecary/parsers/bower.rb', line 17 def self.parse_manifest(manifest) json = JSON.parse(manifest) map_dependencies(json, 'dependencies', 'runtime') + map_dependencies(json, 'devDependencies', 'development') end |