首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >rake资产:预编译卡

rake资产:预编译卡
EN

Stack Overflow用户
提问于 2014-01-02 11:05:17
回答 1查看 2.6K关注 0票数 1

几天前,我注意到jquery日历没有在我的部署站点(Heroku)上工作。在挖掘这个问题时,我注意到我的dev服务器上的站点源有大约100个与引导相关的脚本标记(我正在使用twitter引导css),但是在prod服务器上。我有4个脚本标签。在搜索时,我发现我应该在rails控制台上运行资产管道中的rake assets:precompile。但是在运行过程中花费了非常长的时间,上一次花了6个小时,我不得不放弃它。

提到许多站点和帖子,我发现我应该将config.serve_static_assets改为true,将config.assets.compile更改为true。但问题仍然存在。我还试图从jquery-rails/jquery-ui-rails中删除gem,但问题仍然存在。这是我的config/environmnets/production.rb

代码语言:javascript
复制
ProductRecall::Application.configure do
  # 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 = true

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

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

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



  # Specifies the header that your server uses for sending files
  # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
   config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx

  # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
  config.force_ssl = true

  # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
  # the I18n.default_locale when a translation can not be found)
  config.i18n.fallbacks = true

  # Send deprecation notices to registered listeners
  config.active_support.deprecation = :notify

  # Log the query plan for queries taking more than this (works
  # with SQLite, MySQL, and PostgreSQL)
  # config.active_record.auto_explain_threshold_in_seconds = 0.5

  config.action_controller.perform_caching  = false
end

我的config/application.rb看起来像这样

代码语言:javascript
复制
require File.expand_path('../boot', __FILE__)

# Pick the frameworks you want:
require "active_record/railtie"
require "action_controller/railtie"
require "action_mailer/railtie"
require "active_resource/railtie"
require "sprockets/railtie"
# require "rails/test_unit/railtie"

if defined?(Bundler)
  # If you precompile assets before deploying to production, use this line
  Bundler.require(*Rails.groups(:assets => %w(development test)))
  # If you want your assets lazily compiled in production, use this line
  # Bundler.require(:default, :assets, Rails.env)
end

module ProductRecall
  class Application < Rails::Application

    # Configure the default encoding used in templates for Ruby 1.9.
    config.encoding = "utf-8"

    # Configure sensitive parameters which will be filtered from the log file.
    config.filter_parameters += [:password]

    # Enable escaping HTML in JSON.
    config.active_support.escape_html_entities_in_json = true

    # Enforce whitelist mode for mass assignment.
    # This will create an empty whitelist of attributes available for mass-assignment for all models
    # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
    # parameters by using an attr_accessible or attr_protected declaration.
    config.active_record.whitelist_attributes = true

    # Enable the asset pipeline
    config.assets.enabled = true

    # Version of your assets, change this if you want to expire all your assets
    config.assets.version = '1.0'
    config.action_mailer.default_url_options = { host: 'localhost:3000' }
  end
end

这是我的宝石档案:

代码语言:javascript
复制
source 'https://rubygems.org'

gem 'rails', '3.2.13'
gem 'bootstrap-sass', '2.1'
gem 'bcrypt-ruby', '3.0.1'
gem 'therubyracer', :platforms => :ruby, :platforms => :ruby
gem 'faker', '1.0.1'
gem 'will_paginate', '3.0.3'
gem 'bootstrap-will_paginate', '0.0.6'
gem 'bootstrap-datepicker-rails'
gem "google_visualr", "~> 2.1.0" 
gem 'twitter-bootstrap-rails'
gem "galetahub-simple_captcha", :require => "simple_captcha"
gem 'rufus-scheduler'

group :development, :test do
  gem 'sqlite3', '1.3.5'
  gem 'rspec-rails', '2.11.0'
end

group :development do
  gem 'annotate', '2.5.0'
end

group :assets do
  gem 'sass-rails',   '3.2.5'
  gem 'coffee-rails', '3.2.2'
  gem 'uglifier', '1.2.3'
end

gem 'jquery-rails', '2.0.2'

group :test do
  gem 'capybara', '1.1.2'
  gem 'factory_girl_rails', '4.1.0'
  gem 'cucumber-rails', '1.2.1', :require => false
  gem 'database_cleaner', '0.7.0'
end

#gem 'jquery-ui-rails'

group :production do
  gem 'pg', '0.12.2'
end

请告诉我这里出了什么问题。因为我两天以来一直毫无头绪

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2014-04-24 15:29:09

我也面临着同样的问题。实际上宝石会产生冲突。在这里,‘rufus-调度器’宝石是罪魁祸首。尝试删除gem并进行部署。

接下来你可以试试这个

代码语言:javascript
复制
task :precompile, :roles => :web, :except => { :no_release => true } do 
  run_locally("rm -rf public/assets/*") 
  run_locally("bundle exec rake assets:precompile") 
  servers = find_servers_for_task(current_task) 
  port_option = port ? " -e 'ssh -p #{port}' " : '' 
  servers.each do |server| 
    run_locally("rsync --recursive --times --rsh=ssh --compress -- 
    human-readable #{port_option} --progress public/assets #{user} @#{server}:         {shared_path}") 
  end 
end 
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/20881534

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档