# File lib/bootstrap_pagination/bootstrap_renderer.rb, line 8
    def to_html
      list_items = pagination.map do |item|
        case item
          when Integer
            page_number(item)
          else
            send(item)
        end
      end.join(@options[:link_separator])

      tag("ul", list_items, class: ul_class)
    end