class Gem::Resolver::LockSpecification

def pretty_print(q) # :nodoc:

:nodoc:
def pretty_print(q) # :nodoc:
  q.group 2, "[LockSpecification", "]" do
    q.breakable
    q.text "name: #{@name}"
    q.breakable
    q.text "version: #{@version}"
    unless @platform == Gem::Platform::RUBY
      q.breakable
      q.text "platform: #{@platform}"
    end
    unless @dependencies.empty?
      q.breakable
      q.text "dependencies:"
      q.breakable
      q.pp @dependencies
    end
  end
end