mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-04 11:35:13 +00:00
8 lines
266 B
Ruby
8 lines
266 B
Ruby
# frozen_string_literal: true
|
|
|
|
if Rake::Task.task_defined?('assets:precompile')
|
|
Rake::Task['assets:precompile'].enhance do
|
|
html = ApplicationController.render('errors/500', layout: 'error')
|
|
File.write(Rails.root.join('public', '500.html'), html)
|
|
end
|
|
end
|