Sha256: 887d3c612e767857393977fc9cdfe22094880089ff1d0a6df206f5b2c72ea211
Contents?: true
Size: 374 Bytes
Versions: 13
Compression:
Stored size: 374 Bytes
Contents
# Encoding: utf-8 module ChemistryKit module Formula # Base functionality for the Formula class class Base attr_accessor :catalyst def initialize(driver) @driver = driver end def catalyze(path_to_file) self.catalyst = ChemistryKit::Catalyst.new(path_to_file) end end # Base end # Formula end # ChemistryKit
Version data entries
13 entries across 13 versions & 1 rubygems