# File lib/grape/router/attribute_translator.rb, line 23
      def respond_to_missing?(method_name, _include_private = false)
        if method_name[-1] == '='
          true
        else
          @attributes.key?(method_name)
        end
      end