You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
266 B

  1. # frozen_string_literal: true
  2. if Rake::Task.task_defined?('assets:precompile')
  3. Rake::Task['assets:precompile'].enhance do
  4. html = ApplicationController.render('errors/500', layout: 'error')
  5. File.write(Rails.root.join('public', '500.html'), html)
  6. end
  7. end