Aptana 3 从 ruble 命令执行 rake 任务
我对此很陌生,所以我不知道它是否可能,但我想做的就是从 Aptana Studio 3 中的 ruble 命令执行 rake 任务。
rakefile 位于项目文件夹中,它所做的只是转换和最小化一些萨斯代码。
有人有什么想法吗?
谢谢
Im all new to this so I have no idea if its possible but all I want to do is execute a rake task from a ruble command in Aptana Studio 3.
The rakefile is located in the project folder and all it does in convert and minimize some sass code.
Anyone got any ideas?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我首先看看 http://wiki.appcelerator.org/display/tis/ A+Simple+Command 熟悉如何用卢布创建命令。
如果您想将 rake 任务添加到卢布的命令中,我会查看 http://wiki.appcelerator.org/display/tis/Executing+an+External+Command
在命令的调用块内,您可以调用外部 rake 任务,例如:
rake your_rake_task
I would first look at http://wiki.appcelerator.org/display/tis/A+Simple+Command to get familiar with creating a command in a ruble.
If you wanted to add a rake task to a command in a ruble, I would then look at http://wiki.appcelerator.org/display/tis/Executing+an+External+Command
Inside the invoke block for the command, you can invoke an external rake task like:
rake your_rake_task