Unfortunately that's a rather complex DSL call that adds lots of methods to the class, you'd have to remove all of those, and it probably wouldn't be worth it.
It's probably easier to create a new class CleanProject, add a Project object to it using composition or inheritance, and then only pass through calls for the parts of Project that you want.
On the other hand, if you meant to ask how to remove a status that has been associated to this project (not remove the fact that statuses are related to projects, but just remove a single status from a single project) you would just call:
status.project_id = nil
status.save