# File lib/spring/watcher.rb, line 11
  def self.watch_method=(method)
    if method.is_a?(Class)
      @watch_method = method
    else
      require "spring/watcher/#{method}"
      @watch_method = Watcher.const_get(method.to_s.gsub(/(^.|_.)/) { $1[-1].upcase })
    end
  end