我可能做错了什么,因为我使用 buildr 的时间不长,所以欢迎所有评论。
我的项目结构是:
define :proj do
define :web do
task :run do
# runs the web part of the project in a jetty
end
end
end
现在,如果我想开始我的项目,我必须输入
buildr proj:web:run
我想简单输入
buildr run
反而。我该如何做到这一点?