class Gem::Source::Local

def pretty_print(q) # :nodoc:

:nodoc:
def pretty_print(q) # :nodoc:
  q.object_group(self) do
    q.group 2, "[Local gems:", "]" do
      q.breakable
      if @specs
        q.seplist @specs.keys do |v|
          q.text v.full_name
        end
      end
    end
  end
end