문제

I'm using Yahoo's reset.css in my new generated Rails 3.1 app. Given following app structure:

 - myapp
   - app
     - assets
       - stylesheets
         - application.css
   - ...
   - vendor
     - assets
       - stylesheets
         - yahoo
           - reset.css
           - fonts.css

Including the reset.css files inside my application.css using the require_directory directive following ends in require_tree argument must be a directory.

 /*
  *= require_directory ./yahoo
  */

Do I got something wrong or is this a Sprockets related bug? Because moving the reset.css files into app/assets works like a charm.

(Btw got the problem too in my Rails 3.0 app using a custom Sprockets env.)

도움이 되었습니까?

해결책

Ok, @josh answered my question:

Seems I need some kind of a proxy file (yahoo.css) which will be included in my application.css:

/*
 *= require_directory ./yahoo
 */
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top