graphql-pagination 0.2.3 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 338fc0497792b1bd3ca3fff2daf6200978f7c4bfaf43722e834dc29dd629f0c2
4
- data.tar.gz: 62430fbde2facf0586e6f898930b01aa49c71bfa77db842bd88fece8ebc4dbe5
3
+ metadata.gz: 759b7deb680989e10d889fd2c2322e9cee30a625f1ba78e8763e6a6b0fdd6580
4
+ data.tar.gz: f93129e2a0fece0deb2b8198f93e5a2dba32bab1d0393bc9a44366b617252b17
5
5
  SHA512:
6
- metadata.gz: c7f95879e8249e61a19624ecf0c73146fd8264997fc9e7d35b49008bc557447e2afd1f20bc65be8b3c3dcc6f0ef21e055bb92cf53c5b6e3bcd351407a3d0fb68
7
- data.tar.gz: b37539d880b78d498815f5c6b88966dfefe557f14c2d4a4dc514a7d7e6de8551368e1d6789fd45de3fe889290e34440ff39f8add2bc0c4313fee6eae4eaede6b
6
+ metadata.gz: 382a11132e260880f4fca1c0b4ec6e6a32ce513d4edc28aa417429a04c000a9a7e8c21bc6d45dcc7916483db195d50c50aadc6f5d1afefad5b15f4d3a109670d
7
+ data.tar.gz: 13dfe242a70379402e7b118c73b910c61a280ae87712a50079d49cce993d0a0e1b86488280cf99c2a38d6c2f38a2fe3e9628c5f83a74bc9ab98348e2e7c2c589
@@ -5,7 +5,7 @@ cache: bundler
5
5
  rvm:
6
6
  - 2.5.7
7
7
  - 2.6.5
8
- before_install: gem install bundler -v 2.0.2
8
+ before_install: gem install bundler -v 2.1.1
9
9
  script:
10
10
  - bundle exec rspec
11
11
  - bundle exec rubocop
@@ -1,18 +1,18 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- graphql-pagination (0.2.3)
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.15)
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.77.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
@@ -1,6 +1,8 @@
1
1
  require 'bundler/gem_tasks'
2
2
  require 'rspec/core/rake_task'
3
+ require 'rubocop/rake_task'
3
4
 
4
5
  RSpec::Core::RakeTask.new(:spec)
6
+ RuboCop::RakeTask.new
5
7
 
6
- task default: :spec
8
+ task default: %i[rubocop spec]
@@ -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|spec)/}) }
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) }
@@ -1,3 +1,3 @@
1
1
  module GraphqlPagination
2
- VERSION = '0.2.3'.freeze
2
+ VERSION = '1.0.0'.freeze
3
3
  end
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.2.3
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-02 00:00:00.000000000 Z
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
@@ -1,12 +0,0 @@
1
- require:
2
- - rubocop-performance
3
-
4
- inherit_from:
5
- - https://raw.githubusercontent.com/RenoFi/rubocop/master/0.77.yml
6
-
7
- AllCops:
8
- TargetRubyVersion: 2.5
9
-
10
- Naming/FileName:
11
- Exclude:
12
- - 'lib/*.rb'
@@ -1 +0,0 @@
1
- graphql-pagination
@@ -1 +0,0 @@
1
- 2.6.5