pagination_helper.rb revision d30259e99ac8e7afd42077b99d3cd971c50c791c
module PaginationHelper
def pagination(collection=nil, **options, &block)
# call the collection-method if no collection is given
collection ||= send :collection
pages = paginate(collection, **options)
html = ''
html << pages
html << capture(&block)
html << pages
html.html_safe
end
end