从 RubyMine 中删除原型支持:如何?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建新的 Rails 应用程序时,传递
--skip-prototype
标志,例如:这样 Prototype 就不会与您的应用程序捆绑在一起,并且 RubyMine 也不会基于 Prototype 自动完成。
在这里您还可以找到一种有效的分步方法 在 Rails 应用中切换 JS 库。
When creating a new Rails application, pass the
--skip-prototype
flag, e.g.: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.