class Tilt::Template

def load_compiled_method(path, method_source)

def load_compiled_method(path, method_source)
  File.binwrite(path, method_source)
  # Use load and not require, so unbind_compiled_method does not
  # break if the same path is used more than once.
  load path
end