# File lib/brakeman/processors/lib/rails2_config_processor.rb, line 37
  def process_call exp
    target = exp.target
    target = process target if sexp? target

    if exp.method == :gem and exp.first_arg.value == "erubis"
      Brakeman.notify "[Notice] Using Erubis for ERB templates"
      @tracker.config.erubis = true
    end

    exp
  end