graphql-parallel 0.1.0 → 0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c6286bad71786d342dd9e76db05ccc6b94b883cb
4
- data.tar.gz: db3a736c1f0e2de5c168e81d431491cf4b534df4
3
+ metadata.gz: 5b2a2e784af46ceed7032e7ffaab4075b8bf897b
4
+ data.tar.gz: 0f49c66790deb0ab0ccad4b48f409597e7ef0618
5
5
  SHA512:
6
- metadata.gz: 62fb61d65334d9926af99131ed958faf0b3d05c8d8209634b95d36e146264ed6a8a6b4ffa72f8a5d592c2ed9639b0997b4bcc6a6786c44e53fcdc03e5d640454
7
- data.tar.gz: 6d70d57518d85a62ef375ebe8fcb473a061ac3ac00c62b7995e0fcb66ee48f20440a9ba673acf3dceedc529d501085257e1876b5df7db8a1a5852917215b282c
6
+ metadata.gz: 5bc1a302393ff90178406b0df8f699f3a96ccd38a60040d54f3083b79c46b1607ac9cae936fb0d7b7d5db8e9b2ba3c3fcf22e08a7d3ba301dd18ad23f25bde5a
7
+ data.tar.gz: 40d9e6fe8592b383ae02f8702d6e54a8bd7592ebb6db0a3491529dd0aee3b4ad3e0ece2a9b925700a8d4b56a431946bf7f65976d052cdd808be8fe516557dce1
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # GraphQL::Parallel
2
2
 
3
+ [![Build Status](https://travis-ci.org/rmosolgo/graphql-parallel.svg?branch=master)](https://travis-ci.org/rmosolgo/graphql-parallel)
4
+
3
5
  Provides one layer of asynchronous field resolution to the [`graphql` gem](https://github.com/rmosolgo/graphql-ruby), backed Celluloid.
4
6
 
5
7
  ## Installation
@@ -1,5 +1,5 @@
1
1
  module Graphql
2
2
  module Parallel
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
@@ -1,5 +1,6 @@
1
1
  require "graphql"
2
2
  require "celluloid/current"
3
+ require "graphql/parallel/monkey_patches"
3
4
  require "graphql/parallel/version"
4
5
  require "graphql/parallel/future_field_resolution"
5
6
  require "graphql/parallel/execution_worker"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphql-parallel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Mosolgo