# File lib/thinking_sphinx/index/builder.rb, line 44
      def define_source(&block)
        if @explicit_source
          @source = ThinkingSphinx::Source.new(@index)
          @index.sources << @source
        else
          @explicit_source = true
        end
        
        self.instance_eval &block
      end