Sha256: 683fe0ce78f90c427f96e67715a3e567f54f2451fa5e342c3d83dfaeb6709cfa

Contents?: true

Size: 1.24 KB

Versions: 2

Compression:

Stored size: 1.24 KB

Contents

# -*- coding: utf-8 -*-
#
# Copyright (C) 2010  SHIMODA Hiroshi <shimoda@clear-code.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

require "groonga"

module Groonga
  # @deprecated since 0.9.2. Use Kaminari instead of will_paginate.
  module WillPaginateAPI
    def total_pages
      n_pages
    end

    def per_page
      n_records_in_page
    end

    def total_entries
      n_records
    end

    def out_of_bounds?
      current_page > total_pages
    end

    def offset
      (start_offset || 0) - 1
    end
  end

  module Pagination
    include WillPaginateAPI
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
racknga-0.9.3 lib/racknga/will_paginate.rb
racknga-0.9.2 lib/racknga/will_paginate.rb