2017-09-25 02:04:04 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-25 14:58:12 +00:00
|
|
|
namespace :assets do
|
2017-09-26 09:55:33 +00:00
|
|
|
desc 'Generate static pages'
|
2018-02-03 17:41:01 +00:00
|
|
|
task generate_static_pages: :environment do
|
2018-12-18 22:31:34 +00:00
|
|
|
class StaticApplicationController < ApplicationController
|
|
|
|
def current_user
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def render_static_page(action, dest:, **opts)
|
|
|
|
html = StaticApplicationController.render(action, opts)
|
|
|
|
File.write(dest, html)
|
|
|
|
end
|
|
|
|
|
2017-10-09 18:51:24 +00:00
|
|
|
render_static_page 'errors/500', layout: 'error', dest: Rails.root.join('public', 'assets', '500.html')
|
2017-09-25 02:04:04 +00:00
|
|
|
end
|
|
|
|
end
|
2017-09-25 14:58:12 +00:00
|
|
|
|
|
|
|
if Rake::Task.task_defined?('assets:precompile')
|
|
|
|
Rake::Task['assets:precompile'].enhance do
|
2017-09-27 12:41:54 +00:00
|
|
|
Webpacker.manifest.refresh
|
2017-09-26 09:55:33 +00:00
|
|
|
Rake::Task['assets:generate_static_pages'].invoke
|
2017-09-25 14:58:12 +00:00
|
|
|
end
|
|
|
|
end
|