Sha256: c9317fc8c3fa2811c336bf192c6f0e82744e24985d81df272914d31327a38925
Contents?: true
Size: 1.25 KB
Versions: 31
Compression:
Stored size: 1.25 KB
Contents
require 'erb' require 'pact/doc/interaction_view_model' module Pact module Doc module Markdown class InteractionRenderer attr_reader :interaction def initialize interaction, pact @interaction = InteractionViewModel.new(interaction, pact) end def render_summary suffix = interaction.has_provider_state? ? " given #{interaction.provider_state}" : "" "* [#{interaction.description(true)}](##{interaction.id})#{suffix}\n\n" end def render_full_interaction render('/interaction.erb') end def render template_file ERB.new(template_string(template_file)).result(binding) end # The template file is written with only ASCII range characters, so we # can read as UTF-8. But rendered strings must have same encoding as # script encoding because it will joined to strings which are produced by # string literal. def template_string(template_file) File.read(template_contents(template_file), external_encoding: Encoding::UTF_8).force_encoding(__ENCODING__) end def template_contents(template_file) File.dirname(__FILE__) + template_file end end end end end
Version data entries
31 entries across 31 versions & 1 rubygems