graphlient 0.4.0 → 0.5.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 +4 -4
- data/.rubocop.yml +6 -0
- data/.travis.yml +3 -3
- data/CHANGELOG.md +12 -4
- data/Gemfile +1 -1
- data/README.md +48 -0
- data/lib/graphlient/client.rb +1 -1
- data/lib/graphlient/version.rb +1 -1
- data/spec/graphlient/adapters/http/faraday_adapter_spec.rb +3 -1
- data/spec/graphlient/client_query_spec.rb +3 -3
- data/spec/graphlient/webmock_client_query_spec.rb +40 -0
- data/spec/support/fixtures/invoice_api.json +1289 -0
- metadata +9 -9
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: graphlient
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ashkan Nasseri
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-12-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -52,7 +52,7 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
-
description:
|
55
|
+
description:
|
56
56
|
email: ashkan.nasseri@gmail.com
|
57
57
|
executables: []
|
58
58
|
extensions: []
|
@@ -62,7 +62,6 @@ files:
|
|
62
62
|
- ".rspec"
|
63
63
|
- ".rubocop.yml"
|
64
64
|
- ".rubocop_todo.yml"
|
65
|
-
- ".ruby-version"
|
66
65
|
- ".travis.yml"
|
67
66
|
- CHANGELOG.md
|
68
67
|
- CONTRIBUTING.md
|
@@ -106,6 +105,7 @@ files:
|
|
106
105
|
- spec/graphlient/query_spec.rb
|
107
106
|
- spec/graphlient/schema_spec.rb
|
108
107
|
- spec/graphlient/static_client_query_spec.rb
|
108
|
+
- spec/graphlient/webmock_client_query_spec.rb
|
109
109
|
- spec/spec_helper.rb
|
110
110
|
- spec/support/context/dummy_client.rb
|
111
111
|
- spec/support/context/github_client.rb
|
@@ -114,6 +114,7 @@ files:
|
|
114
114
|
- spec/support/fixtures/github/schema.yml
|
115
115
|
- spec/support/fixtures/github/user.yml
|
116
116
|
- spec/support/fixtures/github/viewer.yml
|
117
|
+
- spec/support/fixtures/invoice_api.json
|
117
118
|
- spec/support/mutations/create_invoice.rb
|
118
119
|
- spec/support/queries/query.rb
|
119
120
|
- spec/support/schema/github.json
|
@@ -124,7 +125,7 @@ homepage: http://github.com/ashkan18/graphlient
|
|
124
125
|
licenses:
|
125
126
|
- MIT
|
126
127
|
metadata: {}
|
127
|
-
post_install_message:
|
128
|
+
post_install_message:
|
128
129
|
rdoc_options: []
|
129
130
|
require_paths:
|
130
131
|
- lib
|
@@ -139,9 +140,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
139
140
|
- !ruby/object:Gem::Version
|
140
141
|
version: 1.3.6
|
141
142
|
requirements: []
|
142
|
-
|
143
|
-
|
144
|
-
signing_key:
|
143
|
+
rubygems_version: 3.0.8
|
144
|
+
signing_key:
|
145
145
|
specification_version: 4
|
146
146
|
summary: A friendlier Ruby client for consuming GraphQL-based APIs.
|
147
147
|
test_files: []
|