# File lib/audited/auditor.rb, line 94
      def method_missing(method_name, *args, &block)
        if method_name == :version
          ActiveSupport::Deprecation.warn("`version` attribute has been changed to `audit_version`. This attribute will be removed.")
          audit_version
        else
          super
        end
      end