stigg-api-client 0.1.1 → 0.3.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
  SHA256:
3
- metadata.gz: 3682a31cd8aa4a5829cde58b0edad7bd77dc28b9b38a42ab0a9f9a1ed329817a
4
- data.tar.gz: c5c3512b9992d1f5b28f8838469b37298a23359acd76b567e9afb689f80a4cfe
3
+ metadata.gz: 3d1d05cb491e5fbc8302149a9d694cd4dd6cb8ce1d98ab0e2f64ec932308ecc3
4
+ data.tar.gz: 8e71bdf8e5b4a0223f89bde227b38b3775f67eb82bb20a7cfee4c6069ef9c7c6
5
5
  SHA512:
6
- metadata.gz: 1a266c7bd536876c55089c7a1c675bdb9f17c4188c32fe22ab46dd02093b60f83739d9e504a09fdfc9fd0bf3da15f2b22ce0b6251efb5c5df71d67836066c0a0
7
- data.tar.gz: abdbfd5826d3d11a914a87ed2952aa2fc5cbf8f80af08eb6ab6dfa9e855cfa47f2b73d65238b584eb43ae9b7d0f4f5dcb0d68a75551f374f489dce56cd491c47
6
+ metadata.gz: 712f2d419658e57b3224c90e6334df8a9b22ae89d498383fa14f1abf99b266b3da7d218c7f5cd7a53391bbedf6823bc0e2bb1a82c20ef3d426cb93d89b4d7533
7
+ data.tar.gz: a8b50713a93f2fac5267c017534de63975c4ae60ed0b5a2d95ab00784ece8f1b96039006f64fe967e0d3b407032d4afc98149c78c09dea899dc689a2d3f2f5f3
data/Gemfile CHANGED
@@ -10,3 +10,5 @@ gem "rake", "~> 13.0"
10
10
  gem "rspec", "~> 3.0"
11
11
 
12
12
  gem "rubocop", "~> 1.21"
13
+
14
+ gem "bump", "~> 0.10"
data/Gemfile.lock CHANGED
@@ -1,35 +1,36 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (0.1.1)
4
+ stigg-api-client (0.3.0)
5
5
  graphlient (~> 0.7.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activesupport (7.0.4)
10
+ activesupport (7.0.4.3)
11
11
  concurrent-ruby (~> 1.0, >= 1.0.2)
12
12
  i18n (>= 1.6, < 2)
13
13
  minitest (>= 5.1)
14
14
  tzinfo (~> 2.0)
15
15
  ast (2.4.2)
16
- concurrent-ruby (1.1.10)
16
+ bump (0.10.0)
17
+ concurrent-ruby (1.2.2)
17
18
  diff-lcs (1.5.0)
18
- faraday (2.6.0)
19
+ faraday (2.7.4)
19
20
  faraday-net_http (>= 2.0, < 3.1)
20
21
  ruby2_keywords (>= 0.0.4)
21
22
  faraday-net_http (3.0.2)
22
23
  graphlient (0.7.0)
23
24
  faraday (~> 2.0)
24
25
  graphql-client
25
- graphql (2.0.15)
26
+ graphql (2.0.20)
26
27
  graphql-client (0.18.0)
27
28
  activesupport (>= 3.0)
28
29
  graphql
29
30
  i18n (1.12.0)
30
31
  concurrent-ruby (~> 1.0)
31
32
  json (2.6.2)
32
- minitest (5.16.3)
33
+ minitest (5.18.0)
33
34
  parallel (1.22.1)
34
35
  parser (3.1.2.1)
35
36
  ast (~> 2.4.1)
@@ -64,7 +65,7 @@ GEM
64
65
  parser (>= 3.1.1.0)
65
66
  ruby-progressbar (1.11.0)
66
67
  ruby2_keywords (0.0.5)
67
- tzinfo (2.0.5)
68
+ tzinfo (2.0.6)
68
69
  concurrent-ruby (~> 1.0)
69
70
  unicode-display_width (2.3.0)
70
71
 
@@ -72,6 +73,7 @@ PLATFORMS
72
73
  x86_64-darwin-21
73
74
 
74
75
  DEPENDENCIES
76
+ bump (~> 0.10)
75
77
  rake (~> 13.0)
76
78
  rspec (~> 3.0)
77
79
  rubocop (~> 1.21)
data/README.md CHANGED
@@ -1,10 +1,7 @@
1
1
  # Stigg::Client
2
2
 
3
- This library provides a Ruby wrapper to [Stigg's GraphQL API](https://docs.stigg.io/docs/graphql-api) based on
4
- the operations the [Stigg's Node.js SDK](https://docs.stigg.io/docs/nodejs-sdk) is using under the hood.
5
-
6
- It leverages the [graphlient](https://github.com/ashkan18/graphlient) library, and utilizes the `Graphlient::Client` class to send the API requests.
7
-
3
+ This Ruby gem provides a wrapper to [Stigg's GraphQL API](https://docs.stigg.io/docs/graphql-api) based on the operations that are in use by the [Stigg's Node.js SDK](https://docs.stigg.io/docs/nodejs-sdk).
4
+ It leverages the [graphlient](https://github.com/ashkan18/graphlient) library under the hood, and utilizes the `Graphlient::Client` class to execute the API requests.
8
5
 
9
6
  ## Documentation
10
7