class Gem::Resolver::Conflict

def pretty_print(q) # :nodoc:

:nodoc:
def pretty_print(q) # :nodoc:
  q.group 2, '[Dependency conflict: ', ']' do
    q.breakable
    q.text 'activated '
    q.pp @activated
    q.breakable
    q.text ' dependency '
    q.pp @dependency
    q.breakable
    if @dependency == @failed_dep
      q.text ' failed'
    else
      q.text ' failed dependency '
      q.pp @failed_dep
    end
  end
end