Ruby on rails 3.2 在rails应用程序中关闭选项卡式css脚手架

Ruby on rails 3.2 在rails应用程序中关闭选项卡式css脚手架,ruby-on-rails-3.2,gem,Ruby On Rails 3.2,Gem,我刚刚在rails应用程序中安装了gem。我也安装了twitter引导程序(使用) 我在关闭tabulous的css支架时遇到问题。我不能像建议的那样“关闭它”,它会覆盖我的引导css 在阅读tabulous引用时,我假设默认情况下没有css支架,要打开它,应该将use\u css\u scaffolding行添加到tabulous.rb文件中 我尝试(尽管文档中没有任何地方)使用use\u css\u scaffolding=false,但没有结果。Css仍然出现在我生成的html中 我的ta

我刚刚在rails应用程序中安装了gem。我也安装了twitter引导程序(使用)

我在关闭tabulous的css支架时遇到问题。我不能像建议的那样“关闭它”,它会覆盖我的引导css

在阅读tabulous引用时,我假设默认情况下没有css支架,要打开它,应该将
use\u css\u scaffolding
行添加到
tabulous.rb
文件中

我尝试(尽管文档中没有任何地方)使用
use\u css\u scaffolding=false
,但没有结果。Css仍然出现在我生成的html中

我的
tabulous.rb
配置文件如下所示:

Tabulous.setup do

  tabs do

    ...

  end

  customize do

   renderer :bootstrap_pill

 end

  # The following will insert some CSS straight into your HTML so that you
  # can quickly prototype an app with halfway-decent looking tabs.
  #
  # This scaffolding should be turned off and replaced by your own custom
  # CSS before using tabulous in production.

end

我还能在哪里禁用这个css脚手架呢?

通过简单的rails服务器重启,我就可以解决这个问题