Sha256: a1d3955ed863fb9145e6519f777232c4007fa0d91f2a75ced180d3f3858c7637
Contents?: true
Size: 420 Bytes
Versions: 8
Compression:
Stored size: 420 Bytes
Contents
# Encoding: utf-8 require 'chemistrykit/formula/chemist_aware' 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
8 entries across 8 versions & 1 rubygems