2017-09-24 22:04:04 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-26 05:55:33 -04:00
|
|
|
def render_static_page(action, dest:, **opts)
|
|
|
|
I18n.with_locale(ENV['DEFAULT_LOCALE'] || I18n.default_locale) do
|
|
|
|
html = ApplicationController.render(action, opts)
|
|
|
|
File.write(dest, html)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-25 10:58:12 -04:00
|
|
|
namespace :assets do
|
2017-09-26 05:55:33 -04:00
|
|
|
desc 'Generate static pages'
|
|
|
|
task :generate_static_pages do
|
2017-10-09 14:51:24 -04:00
|
|
|
render_static_page 'errors/500', layout: 'error', dest: Rails.root.join('public', 'assets', '500.html')
|
2017-09-24 22:04:04 -04:00
|
|
|
end
|
|
|
|
end
|
2017-09-25 10:58:12 -04:00
|
|
|
|
|
|
|
if Rake::Task.task_defined?('assets:precompile')
|
|
|
|
Rake::Task['assets:precompile'].enhance do
|
2017-09-27 08:41:54 -04:00
|
|
|
Webpacker.manifest.refresh
|
2017-09-26 05:55:33 -04:00
|
|
|
Rake::Task['assets:generate_static_pages'].invoke
|
2017-09-25 10:58:12 -04:00
|
|
|
end
|
|
|
|
end
|