从RubyMine中删除Prototype支持:如何?

时间:2011-03-08 22:44:35

标签: prototypejs rubymine

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

使用this example自定义所有内容并重新启动RubyMine,但所有自动完成建议和代码检查器错误仍然基于Prototype。

如何删除所有JavaScript代码完成情况&公司为Prototype量身打造?

(与:RubyMine support for jQuery相关)

1 个答案:

答案 0 :(得分:0)

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

$ rails new myCommentsApp --skip-prototype

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

在这里,您还可以找到switching the JS library in your Rails app的有效分步方法。