graphql-client-aws 0.1.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83c4f809b2d8a32a25977d31d21b8ce02b6d75e062345d8818cdf4d41f3bf330
|
4
|
+
data.tar.gz: aee2f2a73d966803633e6af6fcc7c6ad05c1df6852b4ef5b883b6d338c77b544
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35e2c84d10ff847f21aab56e9af214857602a9442694b828dff6503c92a64324b841bc7ad89923bd195e19ad339f033239881b4ed3e08c4bff59ab8c1cfd57b7
|
7
|
+
data.tar.gz: 4dfed70c7928f8b032cebf36b8ed86232f2fe32114a274b890af7d90461f48efcf665f13853cf40e8a6e1a07d3bb0bb02cfaa1249c9d3c9c8bd182c48d30897e
|
data/README.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
|
+
[![Build Status](https://travis-ci.org/sonodar/graphql-client-aws-ruby.svg?branch=master)](https://travis-ci.org/sonodar/graphql-client-aws-ruby)
|
2
|
+
[![Coverage Status](https://coveralls.io/repos/github/sonodar/graphql-client-aws-ruby/badge.svg)](https://coveralls.io/github/sonodar/graphql-client-aws-ruby)
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/graphql-client-aws.svg)](https://badge.fury.io/rb/graphql-client-aws)
|
4
|
+
|
1
5
|
# graphql-client-aws
|
2
6
|
|
3
|
-
`graphql-client`([github/graphql-client](https://github.com/github/graphql-client)) を AWS AppSync
|
7
|
+
`graphql-client`([github/graphql-client](https://github.com/github/graphql-client)) を AWS AppSync の IAM 認証に対応させるための gem です。
|
4
8
|
|
5
9
|
## Installation
|
6
10
|
|
@@ -22,7 +26,8 @@ Or install it yourself as:
|
|
22
26
|
|
23
27
|
### Configuration
|
24
28
|
|
25
|
-
[オリジナルのサンプル](https://github.com/github/graphql-client#configuration)を以下のように書き換えて使用します。
|
29
|
+
[オリジナルのサンプル](https://github.com/github/graphql-client#configuration)を以下のように書き換えて使用します。
|
30
|
+
`new` の URL 以外の引数は [Aws::Sigv4::Signer](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Sigv4/Signer.html) の `new` に渡されます。
|
26
31
|
|
27
32
|
```diff
|
28
33
|
require "graphql/client"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: graphql-client-aws
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sonodar
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.1
|
19
|
+
version: '1.1'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.1
|
26
|
+
version: '1.1'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: graphql-client
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.14
|
33
|
+
version: '0.14'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.14
|
40
|
+
version: '0.14'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|