Sha256: 967a66463f2980eb93f865fe822770b2eb73f628248f78e8503ff11d2fd580fd
Contents?: true
Size: 697 Bytes
Versions: 16
Compression:
Stored size: 697 Bytes
Contents
# This class will hold methods that apply OEESC 2014 # to a given model. # @todo OEESC 2014 is incomplete and will default to the logic # in the default Standard class methods # @ref [References::OEESC2014] class OEESC2014 < OEESC register_standard 'OEESC 2014' attr_reader :template def initialize @template = 'OEESC 2014' load_standards_database end # Loads the openstudio standards dataset for this standard. # # @param data_directories [Array<String>] array of file paths that contain standards data # @return [Hash] a hash of standards data def load_standards_database(data_directories = []) super([__dir__] + data_directories) end end
Version data entries
16 entries across 16 versions & 1 rubygems