从 RubyMine 中删除原型支持:如何?

发布于 2024-10-21 08:01:25 字数 482 浏览 0 评论 0原文

我正在使用 RubyMine 3.1 开发我的 Rails3 应用程序,今天我从 Prototype 切换到 jQuery 以满足我的 UJS 需求。

使用 这个例子并重新启动RubyMine,但所有自动完成建议和代码检查器错误仍然基于Prototype。

如何删除所有 JavaScript 代码完成 & Co. 为 Prototype 量身定制?

(相关于:RubyMine 对 jQuery 的支持

I'm using RubyMine 3.1 to develop my Rails3 app and today I switched from Prototype to jQuery for my UJS needs.

Customized everything using this example and restarted RubyMine, yet all the auto-complete suggestions and the code inspector errors are still being based on Prototype.

How can I remove all the JavaScript code completion & Co. tailored to Prototype?

(related to: RubyMine support for jQuery)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

℉服软 2024-10-28 08:01:25

创建新的 Rails 应用程序时,传递 --skip-prototype 标志,例如:

$ rails new myCommentsApp --skip-prototype

这样 Prototype 就不会与您的应用程序捆绑在一起,并且 RubyMine 也不会基于 Prototype 自动完成。

在这里您还可以找到一种有效的分步方法 在 Rails 应用中切换 JS 库

When creating a new Rails application, pass the --skip-prototype flag, e.g.:

$ rails new myCommentsApp --skip-prototype

This way Prototype will not be bundled with your app and RubyMine will also not autocomplete based on Prototype.

Here you can also find an efficient step by step approach to switching the JS library in your Rails app.

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