设置 RubyMine2 来运行和调试 Sinatra 应用程序
谁能提供在 Rubymine 中运行和调试 sinatra 应用程序的设置说明?
Can anyone provide setup instructions for running and debugging a sinatra app in Rubymine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不确定您是否在 JetBrains 论坛上找到了答案,但如果没有,以下是 RubyMine 3.2.4 中对我有用的方法。
我的 config.ru 看起来像:
在一个简单的 app.rb 文件中,在下面的“Hello World”行上放置一个断点:
只需右键单击 app.rb 或 config.ru 文件,然后选择“调试“app” ' 从上下文菜单中。加载页面时应该遇到断点。
希望这有帮助。
Not sure if you found your answer on the JetBrains forum, but if not, here's what works for me in RubyMine 3.2.4.
My config.ru looks like:
In a simple app.rb file, put a break point on the "Hello World" line below:
Just right-click on the app.rb or config.ru file, and select 'Debug "app"' from the context menu. You should hit your break point when you load the page.
Hope this helps.
使用当前的 RubyMine (5.4),您可以通过创建 Rack Run/Debug 配置并在其中指定 config.rb 文件的路径来运行它。
With the current RubyMine (5.4) you can run it by creating a Rack Run/Debug configuration and specifying path to your config.rb file in there.