class Gem::Dependency

def pretty_print(q) # :nodoc:

:nodoc:
def pretty_print(q) # :nodoc:
  q.group 1, "Gem::Dependency.new(", ")" do
    q.pp name
    q.text ","
    q.breakable
    q.pp requirement
    q.text ","
    q.breakable
    q.pp type
  end
end