Rails 3.1资产在生产中没有指纹

时间:2011-10-04 13:05:04

标签: ruby-on-rails-3.1 asset-pipeline

刚刚开始适应rails 3.1,我开始编写coffeescript和sass,一切都在开发中运行良好。当我在生产中运行服务器时,我只得到:

  <link href="/stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" />
  <script src="/javascripts/application.js" type="text/javascript"></script>

在页面的源代码中,没有生成哈希码,两个资产都有路由错误:

Routing Error
No route matches [GET] "/stylesheets/application.css"

这是什么原因?我忘了做某事吗?

环境/ production.rb中的

设置:

# Settings specified here will take precedence over those in config/application.rb

  # Code is not reloaded between requests
  config.cache_classes = true

  # Full error reports are disabled and caching is turned on
  config.consider_all_requests_local       = false
  config.action_controller.perform_caching = true

  # Disable Rails's static asset server (Apache or nginx will already do this)
  config.serve_static_assets = false

  # Compress JavaScripts and CSS
  config.assets.compress = true



    # Don't fallback to assets pipeline if a precompiled asset is missed
  config.assets.compile = false

  # Generate digests for assets URLs
  config.assets.digest = true

  config.active_support.deprecation = :notify

非常感谢。

添加更多信息:

在layouts / application.html.erb中,我使用以下内容来包含资产:

  <%= stylesheet_link_tag "application" %>
  <%= javascript_include_tag "application" %>
  <%= csrf_meta_tags %>

我尝试bundle exec rake assets:precompile运行时没有输出任何内容,然后运行rails s -e production,问题仍然存在。

我还尝试设置config.assets.compile = true,然后运行rails s -e production,问题仍然存在。

请帮忙。

更多信息。 我已经看到编译的js和css是在public / assets文件夹中生成的,但是在生产环境中,包含的文件没有哈希码。

帮助。

解决方案: 刚刚检查了我的项目,发现根本原因是我在编辑application.rb以获得mongodb的支持。我不小心评论了

require "sprockets/railtie"

取消注释然后一切都很好。

留给别人提醒我的菜鸟错误。

非常感谢理查德。你的答案不是最后的答案,但它有很大的帮助,真的值得投票。

1 个答案:

答案 0 :(得分:3)

检查您是否在application.rb中打开了管道:

config.assets.enabled = true

您是否使用正确的帮助方法来编写标签?辅助方法不应该在路径中包含/ styleheets和/ javascript。像这样(在erb内部):

javascript_include_tag "application"
stylesheet_link_tag "application"

您还需要在部署过程中运行预编译任务来创建文件,因为您已将compile设置为false。

asset pipeline guide显示了如何使用capistrano进行设置。