stigg-api-client 0.3.0 → 0.429.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/Gemfile.lock +3 -1
- data/lib/stigg/client.rb +1 -1
- data/lib/stigg/version.rb +1 -1
- data/project.json +14 -1
- data/scripts/generate.sh +8 -8
- data/scripts/publish.sh +28 -4
- metadata +6 -9
- data/lib/stigg/generated/operations.rb +0 -1255
- data/package.json +0 -4
- data/schema.json +0 -60323
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a68fdfcb5cf2512178aa31949398bc84089f27d750b808ad4eac47e4e69dbcc1
|
|
4
|
+
data.tar.gz: 757c7847f534396751905638a603e645ac079538a8a07b4dcbb2827782ba20b1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4bda259341f564c03f2f862e163de6734af732da08e6797336cdef05409d97a4a3dd0aeb1de306fab2a949e4023f493946f5f22025e92c5f81f87b13318a9aa8
|
|
7
|
+
data.tar.gz: 836eb4457604b5510ee691da454059765c7bbe1bdb49d177b961b956f568442bdc0f82259509e93788b150a5d0e400db42c6ab9a2e8f39b77885d7d33315ad3f
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
stigg-api-client (0.
|
|
4
|
+
stigg-api-client (0.429.0)
|
|
5
5
|
graphlient (~> 0.7.0)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -70,7 +70,9 @@ GEM
|
|
|
70
70
|
unicode-display_width (2.3.0)
|
|
71
71
|
|
|
72
72
|
PLATFORMS
|
|
73
|
+
arm64-darwin-22
|
|
73
74
|
x86_64-darwin-21
|
|
75
|
+
x86_64-linux
|
|
74
76
|
|
|
75
77
|
DEPENDENCIES
|
|
76
78
|
bump (~> 0.10)
|
data/lib/stigg/client.rb
CHANGED
|
@@ -19,7 +19,7 @@ module Stigg
|
|
|
19
19
|
# @param [String api_url
|
|
20
20
|
# @return [Client]
|
|
21
21
|
def create_client(api_key, api_url = "https://api.stigg.io/graphql", request_timeout=30)
|
|
22
|
-
schema_path = File.join(__dir__, '
|
|
22
|
+
schema_path = File.join(__dir__, 'generated/schema.json').to_s
|
|
23
23
|
|
|
24
24
|
client = Graphlient::Client.new(
|
|
25
25
|
api_url,
|
data/lib/stigg/version.rb
CHANGED
data/project.json
CHANGED
|
@@ -14,9 +14,22 @@
|
|
|
14
14
|
"publish": {
|
|
15
15
|
"executor": "@nrwl/workspace:run-commands",
|
|
16
16
|
"options": {
|
|
17
|
-
"command": "./scripts/publish.sh",
|
|
17
|
+
"command": "./scripts/publish.sh {args.ver}",
|
|
18
18
|
"cwd": "packages/api-client-ruby"
|
|
19
19
|
}
|
|
20
|
+
},
|
|
21
|
+
"test": {
|
|
22
|
+
"executor": "@nrwl/workspace:run-commands",
|
|
23
|
+
"options": {
|
|
24
|
+
"command": "bundle exec rake spec",
|
|
25
|
+
"cwd": "packages/api-client-ruby"
|
|
26
|
+
},
|
|
27
|
+
"dependsOn": [
|
|
28
|
+
{
|
|
29
|
+
"projects": "self",
|
|
30
|
+
"target": "generate"
|
|
31
|
+
}
|
|
32
|
+
]
|
|
20
33
|
}
|
|
21
34
|
},
|
|
22
35
|
"tags": []
|
data/scripts/generate.sh
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
+
#!/bin/bash -e
|
|
2
|
+
|
|
1
3
|
# stitch the operation files together
|
|
2
|
-
cat ../api-client-schema/src/operations
|
|
3
|
-
cat ../api-client-schema/src/operations/queries.graphql >> operations.graphql
|
|
4
|
-
cat ../api-client-schema/src/operations/mutations.graphql >> operations.graphql
|
|
5
|
-
cat ../api-client-schema/src/operations/subscriptions.graphql >> operations.graphql
|
|
4
|
+
cat ../api-client-schema/src/operations/*.graphql > operations.graphql
|
|
6
5
|
|
|
7
|
-
|
|
6
|
+
mkdir -p lib/stigg/generated/
|
|
8
7
|
|
|
9
|
-
cat <<-EOF > schema.json
|
|
10
|
-
$(echo { \"data\": ) $(cat schema.json) $(echo })
|
|
8
|
+
cat <<-EOF > lib/stigg/generated/schema.json
|
|
9
|
+
$(echo { \"data\": ) $(cat ../api-client-schema/src/generated/schema.json) $(echo })
|
|
11
10
|
EOF
|
|
12
11
|
|
|
13
12
|
node scripts/generate-operations.mjs
|
|
13
|
+
rm operations.graphql
|
|
14
14
|
|
|
15
|
-
rubocop -a lib/stigg/generated/operations.rb
|
|
15
|
+
bundle exec rubocop -a lib/stigg/generated/operations.rb
|
|
16
16
|
|
|
17
17
|
printf "api-client-ruby generated!\n"
|
data/scripts/publish.sh
CHANGED
|
@@ -1,7 +1,31 @@
|
|
|
1
|
-
|
|
1
|
+
#!/bin/bash -e
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
VERSION=$1
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
if [ -z "$VERSION" ]; then
|
|
6
|
+
echo "Usage: ./scripts/publish.sh <version>"
|
|
7
|
+
exit 1
|
|
8
|
+
fi
|
|
6
9
|
|
|
7
|
-
|
|
10
|
+
bundle config unset deployment
|
|
11
|
+
|
|
12
|
+
bundle exec bump set "${VERSION}" --no-commit --no-bundle
|
|
13
|
+
git diff
|
|
14
|
+
|
|
15
|
+
echo "Building..."
|
|
16
|
+
bundle exec rake build
|
|
17
|
+
|
|
18
|
+
# create a temporary commit, since it's not possible to
|
|
19
|
+
# release with a dirty working directory
|
|
20
|
+
TAG="v${VERSION}"
|
|
21
|
+
echo "Creating temporary commit and tag (${TAG})..."
|
|
22
|
+
git add .
|
|
23
|
+
git commit --no-verify -m "tmp commit for ruby release"
|
|
24
|
+
git tag "${TAG}"
|
|
25
|
+
|
|
26
|
+
echo "Releasing..."
|
|
27
|
+
bundle exec rake release -v || (git tag -d "${TAG}" ; git reset --soft HEAD~1 ; exit 1)
|
|
28
|
+
git tag -d "${TAG}"
|
|
29
|
+
git reset --soft HEAD~1
|
|
30
|
+
|
|
31
|
+
echo "api-client-ruby published!"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stigg-api-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.429.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stigg
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-05-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: graphlient
|
|
@@ -40,11 +40,8 @@ files:
|
|
|
40
40
|
- Rakefile
|
|
41
41
|
- lib/stigg.rb
|
|
42
42
|
- lib/stigg/client.rb
|
|
43
|
-
- lib/stigg/generated/operations.rb
|
|
44
43
|
- lib/stigg/version.rb
|
|
45
|
-
- package.json
|
|
46
44
|
- project.json
|
|
47
|
-
- schema.json
|
|
48
45
|
- scripts/generate-operations.mjs
|
|
49
46
|
- scripts/generate.sh
|
|
50
47
|
- scripts/publish.sh
|
|
@@ -54,7 +51,7 @@ licenses:
|
|
|
54
51
|
- MIT
|
|
55
52
|
metadata:
|
|
56
53
|
homepage_uri: https://stigg.io
|
|
57
|
-
post_install_message:
|
|
54
|
+
post_install_message:
|
|
58
55
|
rdoc_options: []
|
|
59
56
|
require_paths:
|
|
60
57
|
- lib
|
|
@@ -69,8 +66,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
69
66
|
- !ruby/object:Gem::Version
|
|
70
67
|
version: '0'
|
|
71
68
|
requirements: []
|
|
72
|
-
rubygems_version: 3.
|
|
73
|
-
signing_key:
|
|
69
|
+
rubygems_version: 3.4.10
|
|
70
|
+
signing_key:
|
|
74
71
|
specification_version: 4
|
|
75
72
|
summary: Stigg API Client
|
|
76
73
|
test_files: []
|