# File lib/thinking_sphinx/interfaces/sql.rb, line 16 def index(reconfigure = true, verbose = nil) stream.puts "The verbose argument to the index method is now deprecated, and can instead be\nmanaged by the :verbose option passed in when initialising RakeInterface. That\noption is set automatically when invoked by rake, via rake's --silent and/or\n--quiet arguments.\n" unless verbose.nil? return if indices.empty? command :configure if reconfigure command :index_sql, :indices => (filtered? ? filtered_indices.collect(&:name) : nil) end