How do I color the differences between sets with awesome_print?

339 Views Asked by At

I am doing a set difference and printing the difference using the awesome_print gem:

 ap (a | b ) - (a & b)

This prints out the two items that are different.

Is there a way to highlight or color the difference between the two?

1

There are 1 best solutions below

0
On

I don't see how you can do what you want to achieve. As you may know, Awesome Print allows you to specify the colors of different objects (arrays, hashes, strings, etc.). The Awesome Print docs are here.

Suppose you wished to print a set containing the symbol, :cat, and the string, "dog", with the set "blue", :cat "purplish" and "dog" greenish. You could do that as follows (it appears the color for arrays is applied to sets, which makes sense):

require 'awesome_print'
require 'set'

set = [:cat, 'dog'].to_set
ap set, options={color: {array: :blue, symbol: :purpleish, string: :greenish}}

and the set would be displayed like this:

When the two elements are of the same class, however, it appears the best you can do is print them separately, by invoking ap for each:

set = ['cat', 'dog'].to_set
set.each_with_index { |e,i|
  ap e, options = { color: { string: i.zero? ? :greenish : :red } } }

which displays:

If you wanted to assign a particular color to each element of a and b, you may want to do something like this:

set.each { |e| ap e, options = { color: { string: color_map(e) } } }

where color_map is a method you would write.

You may need to first convert the JSON object to a string (if it is not already a string--I'm not familiar with JSON).