开发时打开鞋子应用程序的最佳方式

发布于 2024-10-22 00:54:25 字数 137 浏览 1 评论 0原文

在这里学习鞋子。我想知道是否有更好的方法来打开鞋子应用程序,同时保持控制台打开。目前,我必须首先打开鞋子应用程序,然后打开控制台,然后在我所做的每分钟更改后打开我的应用程序,看看我遇到了什么错误。

我觉得有一种更简单的方法可以做到这一点。谢谢!

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

挖个坑埋了你 2024-10-29 00:54:25

您可以从命令行运行 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)

美人迟暮 2024-10-29 00:54:25

如果您使用 *NIX,您还可以将 shebang 添加到 .rb 文件的开头:

#! <shoes directory>/dist/shoes

然后执行脚本将自动使用 Shoes 运行它。

If you're on *NIX, you can also add a shebang to the beginning of your .rb file:

#! <shoes directory>/dist/shoes

Then executing your script will run it with shoes automatically.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文