sul-dlss/argo

View on GitHub
app/presenters/workflow_xml_presenter.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

# Shows the raw xml of the workflow status, with pretty formatting
class WorkflowXmlPresenter
  def initialize(xml:)
    @xml = xml
  end

  def pretty_xml
    CodeRay::Duo[:xml, :div].highlight(PrettyXml.print(xml)).html_safe
  end

  private

  attr_reader :xml
end