# File lib/yard/cli/graph.rb, line 50
      def run(*args)
        Registry.load
        optparse(*args)

        contents = objects.map do |o|
          o.format(options.merge(:serialize => false))
        end.join("\n")
        opts = {:type => :layout, :contents => contents}
        options.update(opts)
        Templates::Engine.render(options)
      end