# File lib/yadis/yadis.rb, line 38
  def YADIS.ca_path=(ca_path)
    ca_path = ca_path.to_s
    if File.exists?(ca_path)
      @@ca_path = ca_path
    else
      raise ArgumentError, "#{ca_path} is not a valid file path"
    end
  end