Sha256: 6028533cb24836e2b53f83c6ac410d1835ee10e739ebfc6ea003ae7de57c6017
Contents?: true
Size: 942 Bytes
Versions: 5
Compression:
Stored size: 942 Bytes
Contents
require 'rainbow' module Pact module Provider class PrintMissingProviderStates # Hash of consumer names to array of names of missing provider states def self.call missing_provider_states, output if missing_provider_states.any? output.puts colorize(text(missing_provider_states)) end end def self.colorize string lines = string.split("\n") first_line = Rainbow(lines[0]).cyan.underline other_lines = Rainbow(lines[1..-1].join("\n")).cyan first_line + "\n" + other_lines end def self.text missing_provider_states create_provider_states_for(missing_provider_states) end def self.create_provider_states_for consumers ERB.new(template_string).result(binding) end def self.template_string File.read(File.expand_path( '../../templates/provider_state.erb', __FILE__)) end end end end
Version data entries
5 entries across 5 versions & 1 rubygems