2017-09-25 12:04:04 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-26 19:55:33 +10:00
|
|
|
def render_static_page(action, dest:, **opts)
|
2018-03-04 20:00:46 +11:00
|
|
|
html = ApplicationController.render(action, opts)
|
|
|
|
File.write(dest, html)
|
2017-09-26 19:55:33 +10:00
|
|
|
end
|
|
|
|
|
2017-09-26 00:58:12 +10:00
|
|
|
namespace :assets do
|
2017-09-26 19:55:33 +10:00
|
|
|
desc 'Generate static pages'
|
2018-02-04 04:41:01 +11:00
|
|
|
task generate_static_pages: :environment do
|
2023-02-08 20:38:07 +11:00
|
|
|
render_static_page 'errors/500', layout: 'error', dest: Rails.public_path.join('assets', '500.html')
|
2017-09-25 12:04:04 +10:00
|
|
|
end
|
|
|
|
end
|
2017-09-26 00:58:12 +10:00
|
|
|
|
|
|
|
if Rake::Task.task_defined?('assets:precompile')
|
|
|
|
Rake::Task['assets:precompile'].enhance do
|
2017-09-27 22:41:54 +10:00
|
|
|
Webpacker.manifest.refresh
|
2017-09-26 19:55:33 +10:00
|
|
|
Rake::Task['assets:generate_static_pages'].invoke
|
2017-09-26 00:58:12 +10:00
|
|
|
end
|
|
|
|
end
|