Sha256: 9915e01c6f1c55e49fd9cd4c5329a1ed3d56ca1b8e0c7abbe2aa5f38a8aac18e

Contents?: true

Size: 1.96 KB

Versions: 1

Compression:

Stored size: 1.96 KB

Contents

namespace :assets do
  desc "Compile all the assets named in config.assets.precompile"
  task :precompile do
    # We need to do this dance because RAILS_GROUPS is used
    # too early in the boot process and changing here is already too late.
    if ENV["RAILS_GROUPS"].to_s.empty? || ENV["RAILS_ENV"].to_s.empty?
      ENV["RAILS_GROUPS"] ||= "assets"
      ENV["RAILS_ENV"]    ||= "production"
      Kernel.exec $0, *ARGV
    else
      Rake::Task["environment"].invoke

      # Ensure that action view is loaded and the appropriate sprockets hooks get executed
      ActionView::Base

      # Always perform caching so that asset_path appends the timestamps to file references.
      Rails.application.config.action_controller.perform_caching = true

      config = Rails.application.config
      env    = Rails.application.assets
      target = Rails.root.join("public#{config.assets.prefix}")

      if env.respond_to?(:each_logical_path)
        config.assets.precompile.each do |path|
          env.each_logical_path do |logical_path|
            if path.is_a?(Regexp)
              next unless path.match(logical_path)
            else
              next unless File.fnmatch(path.to_s, logical_path)
            end

            if asset = env.find_asset(logical_path)
              filename = target.join(asset.digest_path)
              mkdir_p filename.dirname
              asset.write_to(filename)
              asset.write_to("#{filename}.gz") if filename.to_s =~ /\.(css|js)$/
            end
          end
        end
      else
        # TODO: Remove this once we're depending on sprockets beta 15
        assets = config.assets.precompile.dup
        assets << {:to => target}
        env.precompile(*assets)
      end
    end
  end

  desc "Remove compiled assets"
  task :clean => [:environment, 'tmp:cache:clear'] do
    config = Rails.application.config
    public_asset_path = File.join(Rails.public_path, config.assets.prefix)
    rm_rf public_asset_path, :secure => true
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
actionpack-3.1.0.rc8 lib/sprockets/assets.rake