# File lib/automateit/interpreter.rb, line 564
    def include_in(object, *methods)
      methods = [methods].flatten
      methods = unique_methods.reject{|t| t.to_s =~ /^_/} if methods.empty?

      object.instance_variable_set(:@__automateit, self)

      for method in methods
        object.instance_eval "def \#{method}(*args, &block)\n@__automateit.send(:\#{method}, *args, &block)\nend\n"
      end
    end