在rails应用程序中关闭Tabulous css脚手架

时间:2013-06-30 03:56:02

标签: ruby-on-rails-3.2 gem

我刚刚在我的rails应用中安装了tabulous gem。我已经安装了twitter bootstrap(使用twitter-bootstrap-rails)。

我遇到了关闭cres脚手架的问题。我建议不能“关闭它”,它会覆盖我的引导程序。

阅读表格引用,我假设默认情况下没有css脚手架,要打开它,你应该将use_css_scaffolding行添加到tabulous.rb文件中。

我尝试使用use_css_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脚手架?

1 个答案:

答案 0 :(得分:0)

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