rack-graphql 1.2.1 → 1.2.3

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: 534df83e2743f2330c67f593f0ba03e17fae5336a43c0a727e9a02eef5accca4
4
- data.tar.gz: 590dee70aece16af8d283b31600b8471eb3f4025d061493719753902c3290ca2
3
+ metadata.gz: be9485cd2bc94d628e7fa0fe885d82c033713ea76b99d8d3226bc66ee00a05ce
4
+ data.tar.gz: 28134d9c5a406bc23eb8742383b30bc923511eb06aaca87cfa8faf8a33a9d645
5
5
  SHA512:
6
- metadata.gz: bf8d40ff80a2bb21bcff2d13416af3a4094732692ebc3665bf9f90e39746192a58fc199b51a5ef0a2c935500f98a5117de5554227c9e0f0e7ccedce10ed955db
7
- data.tar.gz: 31d9a2459fc14d59ed189d8c0fd568770690480ed3a0fcf6e1e40ea006ff2d777cc2cbe02f251107e686de6fa0c4987a3d1e09141404664b97a053adb4e9c03c
6
+ metadata.gz: 24c7976f66796c3c12741031364637a9dd38bf3c8c9dd664c1d30600a1466a3e9b1b2f4f1d9f622c6a6565716040aa1b81a61c3d068ba6049ade648194cfb17a
7
+ data.tar.gz: e026ece7580039fe32b51b507064b27a943433a691371e86d2548ab8c255efe86715634513cb6711454a63316c5cb0ddc31f3df389145edcd1ad3e04e0edf557
@@ -3,8 +3,9 @@ sudo: false
3
3
  language: ruby
4
4
  cache: bundler
5
5
  rvm:
6
- - 2.5
7
6
  - 2.6
7
+ - 2.7
8
8
  before_install: gem install bundler
9
9
  script:
10
- - bundle exec rake
10
+ - bundle exec rake rubocop
11
+ - bundle exec rake spec
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rack-graphql (1.2.1)
4
+ rack-graphql (1.2.3)
5
5
  graphql (~> 1.9)
6
6
  oj
7
7
  rack (~> 2.0)
@@ -12,16 +12,16 @@ GEM
12
12
  ast (2.4.0)
13
13
  coderay (1.1.2)
14
14
  diff-lcs (1.3)
15
- graphql (1.10.3)
15
+ graphql (1.10.5)
16
16
  jaro_winkler (1.5.4)
17
- method_source (0.9.2)
18
- oj (3.10.2)
17
+ method_source (1.0.0)
18
+ oj (3.10.5)
19
19
  parallel (1.19.1)
20
- parser (2.7.0.3)
20
+ parser (2.7.0.5)
21
21
  ast (~> 2.4.0)
22
- pry (0.12.2)
23
- coderay (~> 1.1.0)
24
- method_source (~> 0.9.0)
22
+ pry (0.13.0)
23
+ coderay (~> 1.1)
24
+ method_source (~> 1.0)
25
25
  rack (2.2.2)
26
26
  rack-test (1.1.0)
27
27
  rack (>= 1.0, < 3)
@@ -34,27 +34,27 @@ GEM
34
34
  rspec-mocks (~> 3.9.0)
35
35
  rspec-core (3.9.1)
36
36
  rspec-support (~> 3.9.1)
37
- rspec-expectations (3.9.0)
37
+ rspec-expectations (3.9.1)
38
38
  diff-lcs (>= 1.2.0, < 2.0)
39
39
  rspec-support (~> 3.9.0)
40
40
  rspec-mocks (3.9.1)
41
41
  diff-lcs (>= 1.2.0, < 2.0)
42
42
  rspec-support (~> 3.9.0)
43
43
  rspec-support (3.9.2)
44
- rubocop (0.80.0)
44
+ rubocop (0.81.0)
45
45
  jaro_winkler (~> 1.5.1)
46
46
  parallel (~> 1.10)
47
47
  parser (>= 2.7.0.1)
48
48
  rainbow (>= 2.2.2, < 4.0)
49
49
  rexml
50
50
  ruby-progressbar (~> 1.7)
51
- unicode-display_width (>= 1.4.0, < 1.7)
51
+ unicode-display_width (>= 1.4.0, < 2.0)
52
52
  rubocop-performance (1.5.2)
53
53
  rubocop (>= 0.71.0)
54
54
  rubocop-rspec (1.38.1)
55
55
  rubocop (>= 0.68.1)
56
56
  ruby-progressbar (1.10.1)
57
- unicode-display_width (1.6.1)
57
+ unicode-display_width (1.7.0)
58
58
 
59
59
  PLATFORMS
60
60
  ruby
@@ -1,3 +1,3 @@
1
1
  module RackGraphql
2
- VERSION = '1.2.1'.freeze
2
+ VERSION = '1.2.3'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-graphql
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.3
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: 2020-02-28 00:00:00.000000000 Z
12
+ date: 2020-04-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: graphql
@@ -211,7 +211,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
211
211
  - !ruby/object:Gem::Version
212
212
  version: '0'
213
213
  requirements: []
214
- rubygems_version: 3.0.6
214
+ rubygems_version: 3.1.2
215
215
  signing_key:
216
216
  specification_version: 4
217
217
  summary: Rack middleware implementing graphql endpoint.