# File lib/yard/cli/yardoc.rb, line 14
      def initialize
        @options = SymbolHash[
          :format => :html, 
          :template => :default, 
          :serializer => YARD::Serializers::FileSystemSerializer.new, 
          :files => [],
          :verifier => lambda do |gen, obj| 
            return false if gen.respond_to?(:visibility) && !visibilities.include?(gen.visibility) 
          end
        ]
        @files = []
        @visibilities = [:public]
        @reload = true
        @generate = true
        @options_file = DEFAULT_YARDOPTS_FILE
      end