# File lib/genome-dsl/machines.rb, line 94
  def self.included(mod)
    # Create the needed class methods for the eval
    mod.extend(DSL)

    # If the file exists, run the DSL whenever this module is included
    mod.instance_eval(File.read(GenomeDsl[:machine_types_file])) if File.exist?(GenomeDsl[:machine_types_file])
  end