2013-09-01 2 views
1

나는이 보석이 설치되어있어 기반 프레임 워크를 zurbs에게나침반 : 없음 같은 프레임 워크 : "재단"

를 설치 사용하려고 해요 : 내 프로젝트에서 zurb-재단 (4.3.1)

No such framework: "foundation" 

어떻게 실제로 설치 F를 사용합니까 : 나는 않습니다

compass install foundation 

내가받을 숫 사암?

답변

0

다음 명령은 도큐멘트 here에도 나와 있습니다.

"첫 번째 프로젝트 만들기"에서 찾을 수 있습니다. "zurb 재단"을 요구

  • 추가 :이주의해야

    $ compass create <project-name> -r zurb-foundation --using foundation 
    

    는 기존 프로젝트에 추가이라면 새 프로젝트

    를 만드는 것입니다, 아마 당신은을 놓친 config.rb 파일

+0

저는 실제로 기존 프로젝트를 사용하고 있습니다. 프로젝트 자체에는 루비 의존성이 없습니다. 나는 방금 나침반을 사용하여 삐죽 삐죽 소리를 들었습니다. 그래서 config.rb 파일이 없습니다. 이 경우 sass 패키지를 사용할 수 있습니까? – davedave

+0

config.rb가 필요합니다. 그렇지 않으면 Compass는 라이브러리가 어디에 있는지 모릅니다. – cimmanon

+0

그래, cimmanon이 언급했듯이 config.rb 파일이 필요합니다. 다음과 같이 실행할 수 있습니다. "compass config"그러면 config dir 및 config.rb가 생성됩니다. 그런 다음 config.rb 파일을 편집하여 기존 프로젝트의 올바른 경로를 연결하십시오. –

1

명령은 다음과 같습니다.

이미 기반을 사용하여 존재하는 프로젝트로 작업하는 경우

compass create <project-name> -r zurb-foundation --using foundation 

하고 설정이 필요 말대꾸 :

compass install -r zurb-foundation foundation 

이미 한 경우 zurb 재단은 다음 명령이 기반을 사용하여 새 프로젝트를 만들려면 설치되어 .rb 파일을 루트 디렉토리에 복사하십시오.

require 'zurb-foundation' 
# Require any additional compass plugins here. 

# Set this to the root of your project when deployed: 
http_path = "/" 
css_dir = "stylesheets" 
sass_dir = "sass" 
images_dir = "images" 
javascripts_dir = "javascripts" 

# You can select your preferred output style here (can be overridden via the command line): 
# output_style = :expanded or :nested or :compact or :compressed 

# 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 
preferred_syntax = :scss 

맨 위에 require 'zurb-foundation'이 있는지 확인하십시오. 그것이 제가 이미 존재하는 프로젝트를 가지고있을 때 저를 위해 그것을 해결 한 것입니다.

+0

Susy와 동일한 문제가 있습니다. Cass :sas (~> 3.3)와 sad가 충돌하기 때문에 susy-2.1.2를 활성화 할 수 없습니다.이 오류는 'compass : Gem :: LoadError on line [ "2064"]의 경우 susy를 호출 할 때 발생합니다. 0) 전체 역 추적을 보려면 --trace로 실행하십시오 .' – evolutionxbox