Class: Lapis::Minecraft::Versioning::Marshalling::AssetIndexParser
- Inherits:
-
Object
- Object
- Lapis::Minecraft::Versioning::Marshalling::AssetIndexParser
- Defined in:
- lib/lapis/minecraft/versioning/marshalling/asset_index_parser.rb
Overview
TODO:
JSON and structural errors are not detected and handled elegantly.
Reads an asset index document and generates an AssetIndex instance.
Instance Method Summary collapse
-
#parse(document) ⇒ Array<Asset>
Extract asset information from an asset index document.
Instance Method Details
#parse(document) ⇒ Array<Asset>
Extract asset information from an asset index document.
16 17 18 19 20 21 |
# File 'lib/lapis/minecraft/versioning/marshalling/asset_index_parser.rb', line 16 def parse(document) structure = JSON.parse(document) structure['objects'].map do |path, attributes| unmarshal_asset(path, attributes) end end |