当尝试使用Prepros和Gumby编译sass时,如何修复此编译错误?

时间:2013-12-09 00:17:12

标签: css web windows-7 sass prepros

我正在使用Windows 7编译.scss和一个名为Prepros的应用程序。 (http://alphapixels.com/prepros/)。我还将Gumby Framework(http://gumbyframework.com/)下载到localhost web-server的文档根目录中。我的目标是使用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

最后,我回顾了this帖子,但我觉得它没有帮助。

3 个答案:

答案 0 :(得分:3)

解决方案:我尝试了几件事来解决这个问题,我并不是绝对有哪些人负责修复它。

- 陈述in this thread,我打开指南针config.rb并注释掉Compass::Frameworks.register('modular-scale', :path => File.expand_path("#{extensions_dir}/modular-scale")),并注释掉#require 'modular-scale'#require 'sassy-math'

答案 1 :(得分: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,指南针,模块化规模等)
  3. 确保它说" modular-scale-1.0.6"。如果它没有,那么删除你那边的版本。如果你在这里看到多个sassy-math,请不要担心。我们只想在机器上使用一个模块化秤!
  4. 如何安装Modular Scale v1.0.6?

    1. 运行gem install modular-scale v 1.0.6
    2. 还需要注意什么?

      像Daniel说的那样,打开你的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"))
      

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

答案 2 :(得分:0)

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

gem install modular-scale -v 1.0.6

他在v。

之前错过了连字符 根据这个日期,有一个Gumby更新,以便Gumby现在可以使用这些罗盘,sass和模块级版本 - 请参阅下面的安装命令。

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

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