Rails3 和 Sass::Plugin::options

发布于 2024-08-31 16:05:25 字数 260 浏览 6 评论 0原文

当我尝试将 Sass::Plugin.options[:style] = :compact 添加到environment.rb

时,当我尝试启动服务器时,我得到:

未初始化的常量 Sass (NameError)

我已将 gem 'haml', '3.0.0' 添加到我的 Gemfile 中。

有人遇到过这个吗?

When I try to add Sass::Plugin.options[:style] = :compact to environment.rb

When I try to start up my server I get:

uninitialized constant Sass (NameError)

I have added gem 'haml', '3.0.0' to my Gemfile.

Anybody ran into this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

徒留西风 2024-09-07 16:05:25

我尝试了你所描述的方法,它对我来说效果很好。我使用的是 haml 3.0.4,这是最新版本。您可能需要在系统上运行gem update haml,然后重试。从 3.0.0 到 3.0.4 的更改列表位于 http:// sass-lang.com/docs/yardoc/file.SASS_CHANGELOG.html

我还建议不要将其放入您的environment.rb中,而是创建一个 config/initializers/sass_config.rb 文件并将你的 SASS 配置放在那里。我的看起来像这样:

Sass::Plugin.options[:property_syntax] = :old
Sass::Plugin.remove_template_location("./public/stylesheets/sass")
Sass::Plugin.add_template_location("./app/stylesheets")

I tried what you described and it worked fine for me. I'm using haml 3.0.4 which is the latest version. You may want to run a gem update haml on your system and try again. The list of changes from 3.0.0 to 3.0.4 are at http://sass-lang.com/docs/yardoc/file.SASS_CHANGELOG.html

I also suggest not putting this in your environment.rb, but instead create a config/initializers/sass_config.rb file and put your SASS config there. Mine looks like this:

Sass::Plugin.options[:property_syntax] = :old
Sass::Plugin.remove_template_location("./public/stylesheets/sass")
Sass::Plugin.add_template_location("./app/stylesheets")
憧憬巴黎街头的黎明 2024-09-07 16:05:25

我遇到了完全相同的问题,并且使用 sass_config.rb 文件适用于我的情况 - 似乎在加载插件 init.rb 之前发生了environment.rb 中的调用。

I had the exact same problem, and using the sass_config.rb file worked for my case - it seems the calls in environment.rb are occurring before the plugin init.rb is loaded.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文