3

我正在使用 Windows 7 编译 .scss 和一个名为 Prepros 的应用程序。(http://alphapixels.com/prepros/)。我还将 Gumby 框架 ( http://gumbyframework.com/ ) 下载到了本地网络服务器的文档根目录中。我的目标是使用 gumby 框架和 Prepros。

当我尝试编译 scss 文件时,我收到以下错误:

Syntax error: Undefined operation: "power(golden_ratio(), 1) times 16px".
    on line 52 of Z:/Ampps/www/Gumby-master/sass/extensions/modular-scale/stylesheets/_modular-scale.scss
    from line 23 of Z:\Ampps\www\Gumby-master\sass\gumby.scss Use --trace for backtrace.

此外,如果有帮助,这是文件夹 www\Gumby-master 中包含的 config.rb 文件:

# Require any additional compass plugins here.
# Tell compass where to find local extensions
# If you followed directions and ran 'gem install modular-scale' comment the next two     lines out:
extensions_dir = "sass/extensions"
Compass::Frameworks.register('modular-scale', :path => File.expand_path("#  {extensions_dir}/modular-scale"))
# Uncomment these to use regular Ruby gems.
# require 'modular-scale'
# require 'sassy-math'
# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "css"
sass_dir = "sass"
images_dir = "img"
# You can select your preferred output style here (can be overridden via the command   line) :nested or :expanded or :compact or :compressed:
output_style = :compact
# To enable relative paths to assets via compass helper functions. Uncomment:
# relative_assets = true

# To disable debugging comments that display the original location of your selectors.     Uncomment:
line_comments = false


# If you prefer the indented syntax, you might want to regenerate this
# project again passing --syntax sass, or you can uncomment this:
# preferred_syntax = :sass
# and then run:
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass

最后,我回顾了这个线程,但我没有发现它有帮助。

4

3 回答 3

3

解决方案:我尝试了几件事来解决这个问题,但我并不绝对是他们中的哪一个负责修复它。

-如该线程所述,我打开了我的指南针 config.rb 并注释掉了,并且Compass::Frameworks.register('modular-scale', :path => File.expand_path("#{extensions_dir}/modular-scale"))取消了注释。#require 'modular-scale'#require 'sassy-math'

于 2013-12-09T03:42:49.067 回答
1

我也遇到了同样的问题。所以我想分享我做过的事情。

Gumby 框架 README.md 文件声明“注意:请使用模块化规模 1.0.6,2.x 尚未集成”。确保您的机器上安装的模块化秤的版本是 1.0.6!

如何检查?

  1. 假设您的 Ruby 安装位置是“C:\Ruby200”。
  2. 转到 C:\Ruby200\lib\ruby\gems\2.0.0\gems。在此目录中,您将看到机器上安装的所有 gem。(你应该看到 sass、compass、modular-scale 等等)
  3. 确保它显示“modular-scale-1.0.6”。如果没有,请删除您那里的版本。如果您在这里看到多个 sassy-math,请不要担心。我们只想要一台机器上的模块化秤!

如何安装模块化秤 v1.0.6?

  1. 运行 gem install modules-scale v 1.0.6

还有什么要注意的?

就像丹尼尔说的,打开你的 config.rb。确保其中包含以下几行!

#Require any additional compass plugins here.
require 'modular-scale'
require 'sassy-math'   

无论您做什么,都不要在 config.rb 文件中包含以下代码。为了让这段代码真正起作用,您必须在 sass 目录中有一个名为 extensions 的目录,并且您必须将所有模块化规模的二进制文件复制到该目录中。

extensions_dir = "sass/extensions"
Compass::Frameworks.register('modular-scale', :path => File.expand_path("#{extensions_dir}/modular-scale"))

如果您遇到任何其他问题并设法解决它,请在此处添加您的答案!目前整个安装体验很糟糕。

于 2014-08-10T10:55:46.937 回答
0

为 Parth Shah +1 - 这对我有用。但安装模块化规模 1.0.6 的命令实际上是:

宝石安装模块化规模-v 1.0.6

他错过了 v 之前的连字符。

顺便说一句,截至今天,已经有一个 Gumby 更新,因此据说 Gumby 现在可以与这些 compass、sass 和模块化规模版本一起使用——请参阅下面的安装命令。

gem install compass -v0.12.4, gem install sass -v3.2.18 gem install modules-scale -v2.0.4

我仍在运行旧版本,但其他 Gumby 用户已确认此更新。

于 2014-09-10T11:03:07.213 回答