# File lib/friendly_id/active_record2/configuration.rb, line 63
      def evaluate_method(method, record)
        case method
        when Symbol
          record.send(method)
        when String
          eval(method, instance_eval { binding })
        when Proc, Method
          method.call(record)
        end
      end