开发时打开鞋子应用程序的最佳方式
在这里学习鞋子。我想知道是否有更好的方法来打开鞋子应用程序,同时保持控制台打开。目前,我必须首先打开鞋子应用程序,然后打开控制台,然后在我所做的每分钟更改后打开我的应用程序,看看我遇到了什么错误。
我觉得有一种更简单的方法可以做到这一点。谢谢!
Learning Shoes here. I am wondering if there is a better way to open shoes apps while keeping the console open. Currently I have to first open the shoes app, then open the console, then open my app after each minute change I make just to see what errors I get.
I feel like there is an easier way to do this. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以从命令行运行 Shoes,并将您的应用程序作为参数提供给它。
$/dist/shoes
Shoes 二进制文件位于相对于安装目录的
/dist
中(因此您不会自动在 PATH 上找到它)You can run Shoes from command line, and give it your application as a parameter.
$ <Path_where_you_have_installed_Shoes>/dist/shoes <your_application>
The Shoes binary is in
/dist
relative to the installation directory (so you won' find it on PATH automagically)如果您使用 *NIX,您还可以将 shebang 添加到 .rb 文件的开头:
然后执行脚本将自动使用 Shoes 运行它。
If you're on *NIX, you can also add a shebang to the beginning of your .rb file:
Then executing your script will run it with shoes automatically.