# File lib/gitlab/paginated_response.rb, line 18
    def method_missing(name, *args, &block)
      if @array.respond_to?(name)
        @array.send(name, *args, &block)
      else
        super
      end
    end