0

我需要在 Shell 中使用 Ruby 命令生成默认蓝图 CSS 文件。然而,column_width、amount 和 gutter 参数并没有达到低谷。我想我不明白语法...

它是否正确:

ruby compress.rb -o /var/www/css/blueprint/src/ -p 70 15 12

对于这个文档?

joshua-claytons-computer:lib joshuaclayton$ ruby compress.rb -h
Usage: compress.rb [options]
Blueprint Compressor

options
  -o, --output_path=OUTPUT_PATH    Define a different path to output generated CSS files to.
  -n, --namespace=BP_NAMESPACE     Define a namespace prepended to all Blueprint classes (e.g. .your-ns-span-24)
  -p, --project=PROJECT_NAME       If using the settings.yml file, PROJECT_NAME is the project name you want to export
      --column_width=COLUMN_WIDTH  Set a new column width (in pixels) for the output grid
      --gutter_width=GUTTER_WIDTH  Set a new gutter width (in pixels) for the output grid
      --column_count=COLUMN_COUNT  Set a new column count for the output grid
  -h, --help                       Show this help message.
4

1 回答 1

1

根据使用帮助,我认为您需要指定参数名称,而不是仅仅依靠它们的位置。您还指定了 -p 参数而不提供项目名称。也许这样的事情对你会更好:

ruby compress.rb -o /var/www/css/blueprint/src/ --column_width=70 --gutter_width=15 --gutter_width=12
于 2010-02-22T17:16:21.853 回答