0

こんにちは、Rails 3 で js と css の圧縮に jammit を使用しています。次のエラーが表示されます。

ActionView::Template::Error (assets.yml does not contain a "base" CSS package):
    9:  <% if @content_keywords %><meta name="keywords" content="<%= @content_keywords %>" /><% end %>
    10:  <% if @content_description %><meta name="description" content="<%= @content_description %>" /><% end %>
    11:  <meta name="robots" content="index,follow" />
    12:  <%= include_stylesheets :base %>  
    13:  <%= csrf_meta_tag %>
    14: </head>
    15: <body> 

ファイル assets.yml には次のコードが含まれています。

    package_assets:         on          # (on, off, always)
#embed_assets:           on          # (on, off, datauri)
compress_assets:        on          # (on, off)
gzip_assets:            on          # (on, off)
template_function:      _.template  # (defaults to the built-in micro-templating)
package_path:           packages    # (defaults to assets)
javascript_compressor:  yui    # (yui, closure)

stylesheets:
  base:
    - public/stylesheets/main_min.css

javascripts:
  base_en:
#    - public/javascripts/libs.no_min.js
    - public/javascripts/jquery.innerfade.js
    - public/javascripts/jquery.color.js
    - public/javascripts/jquery.timeago.js
4

1 に答える 1

0

コメントしてください

template_function:      _.template  # (defaults to the built-in micro-templating)
package_path:           packages    # (defaults to assets)

アセットをデフォルトの「assets」ディレクトリにパッケージ化します。この後、「jammit --force」を実行してアセットを再生成します。

于 2011-01-30T05:02:05.343 に答える