graphql-pagination 1.1.3 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.bundler-version +1 -1
- data/.github/PULL_REQUEST_TEMPLATE.md +3 -15
- data/.github/workflows/ci.yml +28 -0
- data/Gemfile.lock +3 -3
- data/README.md +1 -1
- data/Rakefile +2 -1
- data/graphql-pagination.gemspec +2 -2
- data/lib/graphql_pagination/version.rb +1 -1
- metadata +7 -7
- data/.travis.yml +0 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ac8eec73e3f4bf23e60cf8cca10cee6066b1f72ba02b4abfe62a5d64a1973b84
|
|
4
|
+
data.tar.gz: d5128484c2d064e47d06a36d3b46404361f2f85873442222882b62c376421363
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e48de20398166c2632c8751978882ec75db86714b2703667886da512813b5c027cdb8ee5e0179229a3a2e2e10a887b683abf4365a6477b441d1586660f9459df
|
|
7
|
+
data.tar.gz: 9006adcb4177edd4fbe1d1f2f03e2778f87faf920ac9ce8caf9e57b1265859cde04677ce9c163c2d68e421dea5f8c43af45695e469ac22af553961c846f6f68f
|
data/.bundler-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.2.
|
|
1
|
+
2.2.23
|
|
@@ -1,18 +1,6 @@
|
|
|
1
|
-
## Description
|
|
1
|
+
## Description, motivation and context
|
|
2
2
|
<!--- Describe your changes in detail -->
|
|
3
|
-
|
|
4
|
-
## Related issue(s)
|
|
5
|
-
<!--- GH issue number -->
|
|
6
|
-
|
|
7
|
-
## Motivation and Context
|
|
8
3
|
<!--- Why is this change required? What problem does it solve? -->
|
|
9
|
-
<!--- If it fixes an open issue, please link to the issue here. -->
|
|
10
4
|
|
|
11
|
-
##
|
|
12
|
-
<!---
|
|
13
|
-
|
|
14
|
-
## Screenshots (if appropriate):
|
|
15
|
-
<!--- Please add any screenshots of the feature. -->
|
|
16
|
-
|
|
17
|
-
## Related PRs
|
|
18
|
-
<!--- Please add links to any related PRs (backend, component packages, etc). -->
|
|
5
|
+
## Related issue(s) or PR(s)
|
|
6
|
+
<!--- GH issue number -->
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: Ruby CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ main ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ main ]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
test:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
strategy:
|
|
13
|
+
matrix:
|
|
14
|
+
ruby-version: ['2.7', '3.0']
|
|
15
|
+
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v2
|
|
18
|
+
- name: Set up Ruby
|
|
19
|
+
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
|
20
|
+
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
|
21
|
+
# uses: ruby/setup-ruby@v1
|
|
22
|
+
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
|
|
23
|
+
with:
|
|
24
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
25
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
26
|
+
|
|
27
|
+
- name: Run tests
|
|
28
|
+
run: bundle exec rake ci
|
data/Gemfile.lock
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
graphql-pagination (1.
|
|
5
|
-
graphql (~> 1.
|
|
4
|
+
graphql-pagination (1.2.0)
|
|
5
|
+
graphql (~> 1.12)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
@@ -93,4 +93,4 @@ DEPENDENCIES
|
|
|
93
93
|
rubocop-rspec
|
|
94
94
|
|
|
95
95
|
BUNDLED WITH
|
|
96
|
-
2.2.
|
|
96
|
+
2.2.23
|
data/README.md
CHANGED
data/Rakefile
CHANGED
data/graphql-pagination.gemspec
CHANGED
|
@@ -23,9 +23,9 @@ Gem::Specification.new do |spec|
|
|
|
23
23
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
24
24
|
spec.require_paths = ['lib']
|
|
25
25
|
|
|
26
|
-
spec.required_ruby_version = '>= 2.
|
|
26
|
+
spec.required_ruby_version = '>= 2.7'
|
|
27
27
|
|
|
28
|
-
spec.add_dependency 'graphql', '~> 1.
|
|
28
|
+
spec.add_dependency 'graphql', '~> 1.12'
|
|
29
29
|
|
|
30
30
|
spec.add_development_dependency 'kaminari-activerecord'
|
|
31
31
|
spec.add_development_dependency 'kaminari-core'
|
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: 1.
|
|
4
|
+
version: 1.2.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: 2021-07-
|
|
12
|
+
date: 2021-07-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: graphql
|
|
@@ -17,14 +17,14 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - "~>"
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: '1.
|
|
20
|
+
version: '1.12'
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - "~>"
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: '1.
|
|
27
|
+
version: '1.12'
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: kaminari-activerecord
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -154,9 +154,9 @@ files:
|
|
|
154
154
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
155
155
|
- ".github/workflows/auto-approve.yml"
|
|
156
156
|
- ".github/workflows/auto-merge.yml"
|
|
157
|
+
- ".github/workflows/ci.yml"
|
|
157
158
|
- ".gitignore"
|
|
158
159
|
- ".rspec"
|
|
159
|
-
- ".travis.yml"
|
|
160
160
|
- Gemfile
|
|
161
161
|
- Gemfile.lock
|
|
162
162
|
- LICENSE
|
|
@@ -182,14 +182,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
182
182
|
requirements:
|
|
183
183
|
- - ">="
|
|
184
184
|
- !ruby/object:Gem::Version
|
|
185
|
-
version: '2.
|
|
185
|
+
version: '2.7'
|
|
186
186
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
187
187
|
requirements:
|
|
188
188
|
- - ">="
|
|
189
189
|
- !ruby/object:Gem::Version
|
|
190
190
|
version: '0'
|
|
191
191
|
requirements: []
|
|
192
|
-
rubygems_version: 3.2.
|
|
192
|
+
rubygems_version: 3.2.23
|
|
193
193
|
signing_key:
|
|
194
194
|
specification_version: 4
|
|
195
195
|
summary: Page-based kaminari pagination for graphql.
|