/* * call-seq: * dir.refresh -> self * * Delete all files in the directory. It gives you a clean slate. */ static VALUE frt_dir_refresh(VALUE self) { Store *store = DATA_PTR(self); store->clear_all(store); return self; }