{ "configurations": [ { "name": "Debug Podfile Project", "showDebuggerOutput": true, "type": "Ruby", "request": "launch", /// useBundler 为 true 的意思是使用 bundle 来配置依赖的可执行程序 "useBundler": true, "cwd": "${workspaceRoot}", /// 指定执行可执行文件/或者源代码文件的路径 "program": "/usr/local/bin/pod", /// 如果在 ${workspaceRoot} 中有一个可调式项目就不需要指定 --project-directory 直接 cwd 进入到文件夹下 /// 如果想调试别的项目需要指定 --project-directory,不能 cwd --project-directory 对应的path "args": ["install", "--project-directory=~/Workspaces/VSTimeLine/VSTimeLine", "--verbose"] // "args": ["install","--hsource"] } ] }