Sha256: 7b35c85d171920f47a40706b93ab14143f358e9f5be2fd80e7cca2898ca8b8f4
Contents?: true
Size: 1.35 KB
Versions: 46
Compression:
Stored size: 1.35 KB
Contents
module ViewModel module Cepc70 class CepcRr < ViewModel::Cepc70::CommonSchema def recommendations(payback = "") if payback.empty? # return an enumerable of all nodes @xml_doc.xpath "RR-Recommendations" else @xml_doc .search("RR-Recommendations/#{payback}") .map do |node| { code: node.at("Recommendation-Code").content, text: node.at("Recommendation").content, cO2Impact: node.at("CO2-Impact").content, } end end end def short_payback_recommendations recommendations("Short-Payback") end def medium_payback_recommendations recommendations("Medium-Payback") end def long_payback_recommendations recommendations("Long-Payback") end def other_recommendations recommendations("Other-Payback") end def floor_area xpath(%w[Technical-Information Floor-Area]) end def building_environment xpath(%w[Building-Environment]) end def calculation_tools xpath(%w[Calculation-Tool]) end def related_certificate xpath(%w[Related-RRN]) end def related_party_disclosure xpath(%w[Related-Party-Disclosure]) end end end end
Version data entries
46 entries across 46 versions & 1 rubygems