module StatRaptor class Client module Projects def create_project(params = {}) post("/api/v1/projects", params) end def delete_project(params = {}) delete("/api/v1/projects/#{params[:subdomain]}", :user_credentials => params[:user_credentials]) end end end end