rack-graphql 0.7.0 → 0.7.1

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: 42c994c2e159014280cc0c3c3c39c40b66e7a4fa5d6c75acc178ed9beaeb4815
4
- data.tar.gz: f87f1e979d402325e941c52866dfef33322b6eba6121932d0a4880581608d9ac
3
+ metadata.gz: dbcd3782c8127b5ef54b327890ecac6e16c617960db6fff8f65983b99692d6ac
4
+ data.tar.gz: 1204dc5cbf2b56e46521cf839229193177d499d72df3177ccc76d3ca378aaa62
5
5
  SHA512:
6
- metadata.gz: 780a783e048723070521c5033c19a912ac005035ab786ff69a3580441872a7967c735f5154548d1b74a46a25951e0987be7c5b5f1e270674b380125e658a08cf
7
- data.tar.gz: 895c251117d6b7710acf5bb4e6d7e10367a765580d68ed76d0d4ad413ada41597fa4ca0bd231aa1a47a0c2ee901a4262b87352940cbfe6e0a82c3951276bf05b
6
+ metadata.gz: 170e4809bc349ccaffa5341cac7941c89569443437bebd1e440f281233151e094d7d8e41ff2e73df671c05805d5412032377a72f6904994e6a23f0b6e1270d9b
7
+ data.tar.gz: c2276ce3c64d2174e55663fe5556718b3793984596d7af35306966618171346d8941181d81863e1351a634427644e756b5dcc45677082cac316f6eb4f6795bbf
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rack-graphql (0.7.0)
4
+ rack-graphql (0.7.1)
5
5
  graphql (>= 1.9.0)
6
6
  multi_json
7
7
  rack (>= 2.0.0)
@@ -12,10 +12,10 @@ GEM
12
12
  ast (2.4.0)
13
13
  coderay (1.1.2)
14
14
  diff-lcs (1.3)
15
- graphql (1.9.12)
15
+ graphql (1.9.14)
16
16
  jaro_winkler (1.5.3)
17
17
  method_source (0.9.2)
18
- multi_json (1.13.1)
18
+ multi_json (1.14.1)
19
19
  parallel (1.18.0)
20
20
  parser (2.6.5.0)
21
21
  ast (~> 2.4.0)
@@ -27,20 +27,20 @@ GEM
27
27
  rack (>= 1.0, < 3)
28
28
  rainbow (3.0.0)
29
29
  rake (13.0.0)
30
- rspec (3.8.0)
31
- rspec-core (~> 3.8.0)
32
- rspec-expectations (~> 3.8.0)
33
- rspec-mocks (~> 3.8.0)
34
- rspec-core (3.8.2)
35
- rspec-support (~> 3.8.0)
36
- rspec-expectations (3.8.6)
30
+ rspec (3.9.0)
31
+ rspec-core (~> 3.9.0)
32
+ rspec-expectations (~> 3.9.0)
33
+ rspec-mocks (~> 3.9.0)
34
+ rspec-core (3.9.0)
35
+ rspec-support (~> 3.9.0)
36
+ rspec-expectations (3.9.0)
37
37
  diff-lcs (>= 1.2.0, < 2.0)
38
- rspec-support (~> 3.8.0)
39
- rspec-mocks (3.8.2)
38
+ rspec-support (~> 3.9.0)
39
+ rspec-mocks (3.9.0)
40
40
  diff-lcs (>= 1.2.0, < 2.0)
41
- rspec-support (~> 3.8.0)
42
- rspec-support (3.8.3)
43
- rubocop (0.75.0)
41
+ rspec-support (~> 3.9.0)
42
+ rspec-support (3.9.0)
43
+ rubocop (0.75.1)
44
44
  jaro_winkler (~> 1.5.1)
45
45
  parallel (~> 1.10)
46
46
  parser (>= 2.6)
@@ -13,6 +13,11 @@ module RackGraphql
13
13
  run ->(env) { health_response_builder.new(app_name: app_name, env: env).build }
14
14
  end
15
15
 
16
+ map '/healthz' do
17
+ run ->(env) { health_response_builder.new(app_name: app_name, env: env).build }
18
+ end
19
+
20
+
16
21
  map '/' do
17
22
  run ->(env) { health_response_builder.new(app_name: app_name, env: env).build }
18
23
  end
@@ -1,3 +1,3 @@
1
1
  module RackGraphql
2
- VERSION = '0.7.0'.freeze
2
+ VERSION = '0.7.1'.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: 0.7.0
4
+ version: 0.7.1
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-10-08 00:00:00.000000000 Z
12
+ date: 2019-10-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: graphql