graphql-pagination 0.2.3 → 1.0.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/.travis.yml +1 -1
- data/Gemfile.lock +9 -9
- data/Rakefile +3 -1
- data/graphql-pagination.gemspec +1 -1
- data/lib/graphql_pagination/version.rb +1 -1
- metadata +2 -5
- data/.rubocop.yml +0 -12
- data/.ruby-gemset +0 -1
- data/.ruby-version +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 759b7deb680989e10d889fd2c2322e9cee30a625f1ba78e8763e6a6b0fdd6580
|
|
4
|
+
data.tar.gz: f93129e2a0fece0deb2b8198f93e5a2dba32bab1d0393bc9a44366b617252b17
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 382a11132e260880f4fca1c0b4ec6e6a32ce513d4edc28aa417429a04c000a9a7e8c21bc6d45dcc7916483db195d50c50aadc6f5d1afefad5b15f4d3a109670d
|
|
7
|
+
data.tar.gz: 13dfe242a70379402e7b118c73b910c61a280ae87712a50079d49cce993d0a0e1b86488280cf99c2a38d6c2f38a2fe3e9628c5f83a74bc9ab98348e2e7c2c589
|
data/.travis.yml
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
graphql-pagination (0.
|
|
4
|
+
graphql-pagination (1.0.0)
|
|
5
5
|
graphql (~> 1.9.4)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
activemodel (6.0.1)
|
|
11
|
-
activesupport (= 6.0.1)
|
|
12
|
-
activerecord (6.0.1)
|
|
13
|
-
activemodel (= 6.0.1)
|
|
14
|
-
activesupport (= 6.0.1)
|
|
15
|
-
activesupport (6.0.1)
|
|
10
|
+
activemodel (6.0.2.1)
|
|
11
|
+
activesupport (= 6.0.2.1)
|
|
12
|
+
activerecord (6.0.2.1)
|
|
13
|
+
activemodel (= 6.0.2.1)
|
|
14
|
+
activesupport (= 6.0.2.1)
|
|
15
|
+
activesupport (6.0.2.1)
|
|
16
16
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
17
17
|
i18n (>= 0.7, < 2)
|
|
18
18
|
minitest (~> 5.1)
|
|
@@ -22,7 +22,7 @@ GEM
|
|
|
22
22
|
coderay (1.1.2)
|
|
23
23
|
concurrent-ruby (1.1.5)
|
|
24
24
|
diff-lcs (1.3)
|
|
25
|
-
graphql (1.9.
|
|
25
|
+
graphql (1.9.17)
|
|
26
26
|
i18n (1.7.0)
|
|
27
27
|
concurrent-ruby (~> 1.0)
|
|
28
28
|
jaro_winkler (1.5.4)
|
|
@@ -53,7 +53,7 @@ GEM
|
|
|
53
53
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
54
54
|
rspec-support (~> 3.9.0)
|
|
55
55
|
rspec-support (3.9.0)
|
|
56
|
-
rubocop (0.
|
|
56
|
+
rubocop (0.78.0)
|
|
57
57
|
jaro_winkler (~> 1.5.1)
|
|
58
58
|
parallel (~> 1.10)
|
|
59
59
|
parser (>= 2.6)
|
data/Rakefile
CHANGED
data/graphql-pagination.gemspec
CHANGED
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
|
17
17
|
spec.metadata['source_code_uri'] = 'https://github.com/RenoFi/graphql-pagination'
|
|
18
18
|
|
|
19
19
|
spec.files = Dir.chdir(__dir__) do
|
|
20
|
-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin
|
|
20
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin/|spec/|\.rub)}) }
|
|
21
21
|
end
|
|
22
22
|
spec.bindir = 'exe'
|
|
23
23
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
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: 0.
|
|
4
|
+
version: 1.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: 2019-12-
|
|
12
|
+
date: 2019-12-20 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: graphql
|
|
@@ -134,9 +134,6 @@ extra_rdoc_files: []
|
|
|
134
134
|
files:
|
|
135
135
|
- ".gitignore"
|
|
136
136
|
- ".rspec"
|
|
137
|
-
- ".rubocop.yml"
|
|
138
|
-
- ".ruby-gemset"
|
|
139
|
-
- ".ruby-version"
|
|
140
137
|
- ".travis.yml"
|
|
141
138
|
- Gemfile
|
|
142
139
|
- Gemfile.lock
|
data/.rubocop.yml
DELETED
data/.ruby-gemset
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
graphql-pagination
|
data/.ruby-version
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2.6.5
|