move readme to wiki

This commit is contained in:
2023-01-30 19:03:44 +02:00
parent b44c29ff50
commit 5b0ccafc0e
2 changed files with 4 additions and 166 deletions

View File

@ -56,7 +56,7 @@ module ActionDispatch::Routing
get ":id" , to: "merged/view#page" , id: :id , as: :view_page
engine_path = options[:path] || "/merged"
if ! Rails.env.production? or !options[:production].truthy?
if ! Rails.env.production? or options[:production].present?
mount Merged::Engine => engine_path
end
end