Проблемы с установкой Compass 960 Plugin - PullRequest
0 голосов
/ 07 января 2011

Я пытаюсь установить плагин gem compass 960

Я сделал

D:\Websites\css3-mega-menu>gem install compass-960-plugin
Successfully installed compass-960-plugin-0.10.0
1 gem installed
Installing ri documentation for compass-960-plugin-0.10.0...
Installing RDoc documentation for compass-960-plugin-0.10.0...

Кажется, все в порядке.Но ...

D:\Websites\css3-mega-menu>compass frameworks
Available Frameworks & Patterns:

  * blueprint
    - blueprint/basic       - A basic blueprint install that mimics the actual blueprint css.
    - blueprint/buttons     - Button Plugin
    - blueprint/link_icons  - Icons for common types of links
    - blueprint/project     - The blueprint framework.
    - blueprint/semantic    - The blueprint framework for use with semantic markup.
  * compass
    - compass/ellipsis      - Plugin for cross-browser ellipsis truncated text.
    - compass/extension     - Generate a compass extension.
    - compass/project       - The default project layout.
  * fancy-buttons
    - fancy-buttons/project

Но компас, кажется, не обнаруживает это?

Ответы [ 2 ]

1 голос
/ 11 января 2011

Попробуйте отредактировать файл config.rb и добавить require "960gs" вверху. Я не могу быть уверен в самом значении (т. Е. Это может быть просто require "960"), но мне пришлось применить требование с Susy как:

require "susy"

Я задал аналогичный вопрос в Google Compass.

0 голосов
/ 20 января 2011

Я только что столкнулся с этим вопросом после того, как получил ту же проблему. Как сказал Роб Уилкерсон, вам нужен правильный плагин.

# Require any additional compass plugins here.
require "ninesixty" 
# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "stylesheets"
sass_dir = "src"
images_dir = "images"
javascripts_dir = "javascripts"
# To enable relative paths to assets via compass helper functions. Uncomment:
# relative_assets = true
...