bootstrap-ruby/will_paginate-bootstrap

View on GitHub
lib/bootstrap_pagination/action_view.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "will_paginate/view_helpers/action_view"
require "bootstrap_pagination/bootstrap_renderer"

module BootstrapPagination
  # A custom renderer class for WillPaginate that produces markup suitable for use with Twitter Bootstrap.
  class Rails < WillPaginate::ActionView::LinkRenderer
    include BootstrapPagination::BootstrapRenderer
  end
end