github-graphql 1.0.0 → 1.1.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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/github/graphql.rb +2 -2
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e62c56c9295d5d31712f4a85a0640c8b93c5a090
4
- data.tar.gz: b181cc3fe475c4b684115f129de753e9227c3647
3
+ metadata.gz: a86f61ec91d399d881f818d82e6fc5094e173ba5
4
+ data.tar.gz: 2c3f1d083583b6e19fec80b7c9b43095a9643fab
5
5
  SHA512:
6
- metadata.gz: d6ab9a7fea8e3dc8c39375c19706ba937ded28c30d05539c3f9e9d2455212f9bb2d52594318ef9b16f4e88917fab81adfbbf7a7707ad03728dcf081c8b351c79
7
- data.tar.gz: bf6425362bf3c0327a3665ab2c2e0f85c188352133418e7939e18e38bf4774b3b7cd5ac8e0fbdbdd3c7eb6dd277f61307cbf317cfe44be20cebf26ba51ac9856
6
+ metadata.gz: 47b96ec9b9a20f1e7e9f5fb6e1cfb9bfcd5b5ce4b716575714816222d239f73917be6325ea1bfe7c544c1136d21712d99577cd39947104f2e26a9755f08c8d69
7
+ data.tar.gz: 116944158300675b801287ed85af740653f95059ebacc000dfe98d996725cf952f850580bfde0fb68d7c28dd3bc73341f26a381efc403ebd6eed0929b317457f
@@ -6,7 +6,7 @@ module Github
6
6
 
7
7
  # Used to Query the Github GraphQL API
8
8
  class GraphQL
9
- def initialize(token, query, vars)
9
+ def initialize(token, query, vars = nil)
10
10
  @payload = {}
11
11
 
12
12
  uri = URI.parse('https://api.github.com/graphql')
@@ -24,7 +24,7 @@ module Github
24
24
  @request['Authorization'] = "bearer #{token}"
25
25
  end
26
26
 
27
- def payload(query, vars)
27
+ def payload(query, vars = nil)
28
28
  @payload['query'] = query
29
29
  @payload['variables'] = vars
30
30
  @request.body = @payload.to_json
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: github-graphql
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Caleb Smith