Sha256: 8649c561905fea60e50263b5d185339de1505202d3afe170135c56a2cd5fa4e3
Contents?: true
Size: 374 Bytes
Versions: 17
Compression:
Stored size: 374 Bytes
Contents
# This abstract class holds methods that many versions of DEER share. # If a method in this class is redefined by a subclass, # the implementation in the subclass is used. # @abstract class DEER < Standard def initialize load_standards_database end def load_standards_database(data_directories = []) super([__dir__] + data_directories) end end
Version data entries
17 entries across 17 versions & 1 rubygems