安装后从我的simple_form gem中删除Bootstrap?

时间:2014-04-08 00:02:07

标签: ruby-on-rails twitter-bootstrap jquery-mobile simple-form

我使用命令使simple_form gem与bootstrap一起运行良好。我很确定它是:

$ rails g simple_form:install --bootstrap

但是我已经决定不使用Bootstrap,因为我的Rails应用程序主要用于手机。我将使用jQuery mobile。我目前在我的应用程序中使用jQuery Mobile和Bootstrap,它们似乎有时会在使用类名时发生冲突。我打算使用jQuery Mobile,我觉得这已经足够了。任何关于此的想法或有用的文章都会很方便。

那么,解除上述内容的命令是什么?我知道它在我的app文件夹中分散了几个文件并且我想撤消它以保持干净。感谢。

1 个答案:

答案 0 :(得分:1)

运行以下两个命令:

rails d simple_form:install --bootstrap ## Destroy the existing configurations for simple_form

rails g simple_form:install  ## Generate the clean configurations for simple_form

当您最初使用simple_form选项运行--bootstrap的生成器时,它会为simple_form创建自举式兼容配置。专门为引导程序所做的更改分布在多个文件中。除非你确切地知道需要删除什么以及为simple_form保留什么,否则很难挑选它们并删除它们。