graphql-pagination 2.0.0.rc → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.bundler-version +1 -1
- data/.github/workflows/ci.yml +2 -2
- data/Gemfile.lock +7 -7
- data/graphql-pagination.gemspec +1 -1
- data/lib/graphql_pagination/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 66ee4e073251b59ae351cabd16e4122d2b9aca8ad2bf666b6a7d7f24004d2d60
|
4
|
+
data.tar.gz: ca7ab1e6a8612d16a80296b50158073e42d160dc4ef9487d6926968153847e93
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f281e3304279f6f02dfde1c682a94ad3fe2771c41052ab97982200a17257b9a2650ab858fc70834bcef0a0651b61e34190765fcc121c0c4c71a8adb93e072a1f
|
7
|
+
data.tar.gz: ddd6dd8edb076763cb918abb30187bd67d6b62999f89eb08abd39b5324794a0fcbafb1ca4c16f95809e14959941c5720d8eaedc7036d83f4cf1ca9d4047f59ff
|
data/.bundler-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.3.
|
1
|
+
2.3.10
|
data/.github/workflows/ci.yml
CHANGED
@@ -11,7 +11,7 @@ jobs:
|
|
11
11
|
runs-on: ubuntu-latest
|
12
12
|
strategy:
|
13
13
|
matrix:
|
14
|
-
ruby-version: ['3.0']
|
14
|
+
ruby-version: ['3.0', 3.1]
|
15
15
|
|
16
16
|
steps:
|
17
17
|
- uses: actions/checkout@v2
|
@@ -19,7 +19,7 @@ jobs:
|
|
19
19
|
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
20
20
|
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
21
21
|
# uses: ruby/setup-ruby@v1
|
22
|
-
uses: ruby/setup-ruby@
|
22
|
+
uses: ruby/setup-ruby@bd94d6a504586da892a5753afdd1480096ed30df
|
23
23
|
with:
|
24
24
|
ruby-version: ${{ matrix.ruby-version }}
|
25
25
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
graphql-pagination (2.0.0
|
4
|
+
graphql-pagination (2.0.0)
|
5
5
|
graphql (~> 2.0)
|
6
6
|
|
7
7
|
GEM
|
@@ -19,9 +19,9 @@ GEM
|
|
19
19
|
tzinfo (~> 2.0)
|
20
20
|
ast (2.4.2)
|
21
21
|
coderay (1.1.3)
|
22
|
-
concurrent-ruby (1.1.
|
22
|
+
concurrent-ruby (1.1.10)
|
23
23
|
diff-lcs (1.5.0)
|
24
|
-
graphql (2.0.
|
24
|
+
graphql (2.0.5)
|
25
25
|
i18n (1.10.0)
|
26
26
|
concurrent-ruby (~> 1.0)
|
27
27
|
kaminari-activerecord (1.2.2)
|
@@ -30,7 +30,7 @@ GEM
|
|
30
30
|
kaminari-core (1.2.2)
|
31
31
|
method_source (1.0.0)
|
32
32
|
minitest (5.15.0)
|
33
|
-
parallel (1.
|
33
|
+
parallel (1.22.1)
|
34
34
|
parser (3.1.1.0)
|
35
35
|
ast (~> 2.4.1)
|
36
36
|
pry (0.14.1)
|
@@ -49,11 +49,11 @@ GEM
|
|
49
49
|
rspec-expectations (3.11.0)
|
50
50
|
diff-lcs (>= 1.2.0, < 2.0)
|
51
51
|
rspec-support (~> 3.11.0)
|
52
|
-
rspec-mocks (3.11.
|
52
|
+
rspec-mocks (3.11.1)
|
53
53
|
diff-lcs (>= 1.2.0, < 2.0)
|
54
54
|
rspec-support (~> 3.11.0)
|
55
55
|
rspec-support (3.11.0)
|
56
|
-
rubocop (1.26.
|
56
|
+
rubocop (1.26.1)
|
57
57
|
parallel (~> 1.10)
|
58
58
|
parser (>= 3.1.0.0)
|
59
59
|
rainbow (>= 2.2.2, < 4.0)
|
@@ -93,4 +93,4 @@ DEPENDENCIES
|
|
93
93
|
rubocop-rspec
|
94
94
|
|
95
95
|
BUNDLED WITH
|
96
|
-
2.3.
|
96
|
+
2.3.10
|
data/graphql-pagination.gemspec
CHANGED
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
|
|
24
24
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
25
25
|
spec.require_paths = ['lib']
|
26
26
|
|
27
|
-
spec.required_ruby_version = '>=
|
27
|
+
spec.required_ruby_version = '>= 3.0'
|
28
28
|
|
29
29
|
spec.add_dependency 'graphql', '~> 2.0'
|
30
30
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: graphql-pagination
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Krzysztof Knapik
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-
|
12
|
+
date: 2022-04-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: graphql
|
@@ -183,14 +183,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
183
183
|
requirements:
|
184
184
|
- - ">="
|
185
185
|
- !ruby/object:Gem::Version
|
186
|
-
version: '
|
186
|
+
version: '3.0'
|
187
187
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
188
188
|
requirements:
|
189
|
-
- - "
|
189
|
+
- - ">="
|
190
190
|
- !ruby/object:Gem::Version
|
191
|
-
version:
|
191
|
+
version: '0'
|
192
192
|
requirements: []
|
193
|
-
rubygems_version: 3.
|
193
|
+
rubygems_version: 3.3.7
|
194
194
|
signing_key:
|
195
195
|
specification_version: 4
|
196
196
|
summary: Page-based kaminari pagination for graphql.
|