We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10e4fbc commit d2082ceCopy full SHA for d2082ce
README.md
@@ -10,10 +10,12 @@ This follows the proposed [RFC-5988](http://tools.ietf.org/html/rfc5988) standar
10
In your `Gemfile`:
11
12
```ruby
13
-# Requires Rails (Rails-API is also supported) or Grape.
+# Requires Rails (Rails-API is also supported), or Grape
14
+# v0.10.0 or later. If you're on an earlier version of
15
+# Grape, use api-pagination ~> 3.1
16
gem 'rails', '>= 3.0.0'
17
gem 'rails-api'
-gem 'grape'
18
+gem 'grape', '>= 0.10.0'
19
20
# Then choose your preferred paginator from the following:
21
gem 'kaminari'
lib/api-pagination/version.rb
@@ -1,7 +1,7 @@
1
module ApiPagination
2
class Version
3
- MAJOR = 3
4
- MINOR = 1
+ MAJOR = 4
+ MINOR = 0
5
PATCH = 0
6
7
def self.to_s
0 commit comments