class Sass::Plugin::Compiler

def child_of_directory?(parent, child)

def child_of_directory?(parent, child)
  parent_dir = parent.end_with?(File::SEPARATOR) ? parent : (parent + File::SEPARATOR)
  child.start_with?(parent_dir) || parent == child
end